2024-06-21 17:37:11 +05:30
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2024-09-23 17:10:38 +05:30
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
"lib": ["ES2015", "DOM"],
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "Node",
|
|
|
|
|
"target": "ES6",
|
|
|
|
|
"sourceMap": true,
|
2024-06-21 17:37:11 +05:30
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["src/core/*"],
|
|
|
|
|
"@/styles/*": ["src/styles/*"],
|
|
|
|
|
"@/plane-editor/*": ["src/ce/*"]
|
2024-09-23 17:10:38 +05:30
|
|
|
},
|
2025-02-19 15:13:37 +05:30
|
|
|
"strictNullChecks": true,
|
2024-09-23 17:10:38 +05:30
|
|
|
"allowSyntheticDefaultImports": true
|
|
|
|
|
},
|
|
|
|
|
"include": ["src/**/*", "index.d.ts"],
|
|
|
|
|
"exclude": ["dist", "build", "node_modules"]
|
2024-06-21 17:37:11 +05:30
|
|
|
}
|