mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
24 lines
574 B
JSON
24 lines
574 B
JSON
{
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"lib": ["ES2022", "DOM"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"target": "ESNext",
|
|
"types": ["node"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/core/*"],
|
|
"@/styles/*": ["./src/styles/*"],
|
|
"@/plane-editor/*": ["./src/ce/*"]
|
|
},
|
|
"strictNullChecks": true,
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": ["src/**/*", "index.d.ts"],
|
|
"exclude": ["dist", "build", "node_modules"]
|
|
}
|