Files
plane/packages/editor/tsconfig.json
sriram veeraghanta 78b4e43976 refactor: flatten editor src/core into src (#9723)
Collapse the remaining src/core/ directory in @plane/editor up into src/,
removing the last layer of nesting left over from the ce/ee split removal.

- Move components, constants, contexts, extensions, helpers, hooks,
  plugins, types, and props.ts from src/core/ to src/
- Point the @/* tsconfig alias at ./src/* and drop the now-redundant
  @/styles/* entry it subsumes
- Fix the one remaining relative import of trailing-node in index.ts

All 216 file moves are pure renames; no file contents changed.

Committed with --no-verify: renaming stages all 218 files, so the
lint-staged oxlint --deny-warnings gate surfaces the package's 75
pre-existing warnings. Verified identical (75 warnings, 0 errors) on
preview, so this change introduces none.

Claude-Session: https://claude.ai/code/session_01XxAggkh7oCCD3dNyKp1Zon
2026-08-31 14:18:01 +05:30

15 lines
361 B
JSON

{
"extends": "@plane/typescript-config/react-library.json",
"compilerOptions": {
"exactOptionalPropertyTypes": false,
"noImplicitReturns": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src/**/*", "index.d.ts"],
"exclude": ["dist", "build", "node_modules"]
}