* fix: add the redis extension conditionally * chore: import order and stuff * fix: added logger, error handling and routing * feat: configured sentry with source maps * fix: sentry config and returning json * fix: remove on change logs * fix: add pretty print
43 lines
774 B
JSON
43 lines
774 B
JSON
{
|
|
"extends": "tsconfig/base.json",
|
|
"compilerOptions": {
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
|
|
"lib": [
|
|
"ES2015"
|
|
],
|
|
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
],
|
|
"@/plane-live/*": [
|
|
"./src/ce/*"
|
|
]
|
|
},
|
|
|
|
"removeComments": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
|
|
// Set `sourceRoot` to "/" to strip the build path prefix
|
|
// from generated source code references.
|
|
// This improves issue grouping in Sentry.
|
|
"sourceRoot": "/"
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"./dist",
|
|
"./build",
|
|
"./node_modules"
|
|
]
|
|
}
|