Files
plane/silo/tsconfig.json
Saurabh Kumar fab70fb63f [SILO-75] chore: Silo error handling and sentry configuration (#2105)
* 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
2025-01-07 20:37:23 +05:30

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"]
}