mirror of
https://github.com/makeplane/plane.git
synced 2026-02-25 04:35:21 +01:00
39 lines
715 B
JSON
39 lines
715 B
JSON
{
|
|
"extends": "@plane/typescript-config/base.json",
|
|
"compilerOptions": {
|
|
"module": "ES2015",
|
|
"moduleResolution": "Bundler",
|
|
"lib": [
|
|
"ES2015"
|
|
],
|
|
"outDir": "./dist",
|
|
"rootDir": ".",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
],
|
|
"@/plane-live/*": [
|
|
"./src/ce/*"
|
|
]
|
|
},
|
|
"removeComments": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"sourceRoot": "/"
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"tsup.config.ts"
|
|
],
|
|
"exclude": [
|
|
"./dist",
|
|
"./build",
|
|
"./node_modules"
|
|
]
|
|
}
|