mirror of
https://github.com/makeplane/plane.git
synced 2026-07-12 21:40:18 +02:00
15 lines
298 B
JSON
15 lines
298 B
JSON
|
|
{
|
||
|
|
"extends": "@plane/typescript-config/base.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"baseUrl": ".",
|
||
|
|
"outDir": "dist",
|
||
|
|
"jsx": "preserve",
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"paths": {
|
||
|
|
"@/*": ["src/*"]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"include": ["src/**/*.ts"],
|
||
|
|
"exclude": ["dist", "build", "node_modules"]
|
||
|
|
}
|