mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
21 lines
493 B
JSON
21 lines
493 B
JSON
{
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"lib": ["ES2015", "DOM"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"target": "ES6",
|
|
"sourceMap": true,
|
|
"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"]
|
|
}
|