mirror of
https://github.com/gosticks/plane.git
synced 2025-10-16 12:45:33 +00:00
28 lines
705 B
JSON
28 lines
705 B
JSON
{
|
|
"extends": "@plane/typescript-config/base.json",
|
|
"compilerOptions": {
|
|
"module": "ES2015",
|
|
"moduleResolution": "Bundler",
|
|
"lib": ["ES2015"],
|
|
"target": "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": "/",
|
|
"types": ["node"]
|
|
},
|
|
"include": ["src/**/*.ts", "tsdown.config.ts"],
|
|
"exclude": ["./dist", "./build", "./node_modules", "**/*.d.ts"]
|
|
}
|