mirror of
https://github.com/makeplane/plane.git
synced 2026-07-14 14:31:37 +02:00
* chore: global error handler and code cleanup * chore: global error handler and code cleanup * sentry config setup * fix sentry source map issue + workers error handling * serve cjs on start * remove --source-map serve on silo start * sentry release version via docker config + remove next and add response handler
23 lines
526 B
JSON
23 lines
526 B
JSON
{
|
|
"extends": "@plane/typescript-config/base.json",
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"experimentalDecorators": true,
|
|
"esModuleInterop": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"inlineSources": true,
|
|
"inlineSourceMap": false,
|
|
"sourceRoot": "./src"
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["dist", "build", "node_modules"]
|
|
}
|