Files
plane/packages/editor/tsconfig.json
M. Palanikannan c8493e8117 [WIKI-334] fix: Pages sidebar bugs (#3253)
* fix: codeblock smooth cursor positioning fixed

* fix: sort ordering for page is not alphabetical

* fix: delete page modal

* fix: add subpage added immediately to parent

* fix: headings revamped and updated only when needed

* fix: optimized editor headings rendering

* fix: heading rerenders

* fix: update document outline and headings management for improved performance and accuracy

* fix: optimizing more things in table of contents

* chore: added archived filter for pages

* fix: animations on the heading

* fix: adding block animations

* fix: content outline

* fix: remove toc

* fix: remove toc

* fix: wip

* fix: remove unused package

* fix: on change logic fixed

* fix: attrs of newly added and duplicate pages

* fix: old heading

* fix: old heading

* fix: collaborators list

* fix: handle toggling

* fix: behaviour on clicking on the navigation item

* chore: remove the check for lock pages to move

* fix: better navigation between title and editor

* fix: shift tab

* fix: tables select all!

* fix: sync agent

* fix: sync agent stop saving

* fix: used enums

* fix: typing storage in collaboration cursor

* fix: better collaborator list

* fix: aria label

* fix: remove console lgo

* fix: access change

* fix: change access if section changes

---------

Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
2025-06-19 19:12:17 +05:30

40 lines
633 B
JSON

{
"compilerOptions": {
"jsx": "react-jsx",
"lib": [
"ES2015",
"DOM"
],
"module": "ESNext",
"moduleResolution": "Node",
"target": "ES6",
"sourceMap": true,
"baseUrl": ".",
"paths": {
"@/*": [
"src/core/*"
],
"@/styles/*": [
"src/styles/*"
],
"@/plane-editor/*": [
"src/ee/*"
],
"@/ce/*": [
"src/ce/*"
]
},
"strictNullChecks": true,
"allowSyntheticDefaultImports": true
},
"include": [
"src/**/*",
"index.d.ts"
],
"exclude": [
"dist",
"build",
"node_modules"
]
}