2024-06-21 17:37:11 +05:30
|
|
|
{
|
2025-10-06 21:01:32 +05:30
|
|
|
"extends": "@plane/typescript-config/react-library.json",
|
2024-06-21 17:37:11 +05:30
|
|
|
"compilerOptions": {
|
2024-09-23 17:10:38 +05:30
|
|
|
"jsx": "react-jsx",
|
2025-07-02 18:20:18 +05:30
|
|
|
"lib": ["ES2022", "DOM"],
|
2025-10-06 21:01:32 +05:30
|
|
|
"module": "ES2022",
|
|
|
|
|
"moduleResolution": "Bundler",
|
2025-07-18 20:06:48 +05:30
|
|
|
"noEmit": true,
|
2025-09-30 19:56:12 +05:30
|
|
|
"strict": true,
|
2025-07-18 20:06:48 +05:30
|
|
|
"skipLibCheck": true,
|
2024-09-23 17:10:38 +05:30
|
|
|
"sourceMap": true,
|
2024-06-21 17:37:11 +05:30
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
2025-07-02 18:20:18 +05:30
|
|
|
"@/*": ["./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
|
|
|
}
|