mirror of
https://github.com/makeplane/plane.git
synced 2026-09-02 03:59:00 +02:00
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
15 lines
361 B
JSON
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"]
|
|
}
|