Files
plane/packages/editor/tsconfig.json
sriramveeraghanta 1c33578441 fix: merge conflicts
2025-08-19 20:31:24 +05:30

25 lines
576 B
JSON

{
"compilerOptions": {
"jsx": "react-jsx",
"lib": ["ES2022", "DOM"],
"module": "ESNext",
"moduleResolution": "bundler",
"noEmit": true,
"skipLibCheck": true,
"sourceMap": true,
"target": "ESNext",
"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"]
}