mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 16:19:43 +01:00
20 lines
422 B
JSON
20 lines
422 B
JSON
|
|
{
|
||
|
|
"extends": "@plane/typescript-config/base.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"module": "ESNext",
|
||
|
|
"target": "ESNext",
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"outDir": "./dist",
|
||
|
|
"rootDir": "./src",
|
||
|
|
"baseUrl": ".",
|
||
|
|
"paths": {
|
||
|
|
"@/*": ["./src/*"]
|
||
|
|
},
|
||
|
|
"experimentalDecorators": true,
|
||
|
|
"sourceMap": true
|
||
|
|
},
|
||
|
|
"include": ["src/**/*"],
|
||
|
|
"exclude": ["node_modules"]
|
||
|
|
}
|