sourcebot/packages/backend/tsconfig.json
Michael Sukkarieh a93ee6527c
add sentry support to backend and webapp (#223)
* add sentry to web app

* set sentry environemnt from env var

* add sentry env replace logic in docker container

* wip add backend sentry

* add sentry to backend

* move dns to env var

* remove test exception
2025-03-01 19:21:17 -08:00

32 lines
No EOL
824 B
JSON

{
"compilerOptions": {
"outDir": "dist",
"incremental": true,
"declaration": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"module": "Node16",
"moduleResolution": "Node16",
"target": "ES2022",
"noEmitOnError": false,
"noImplicitAny": true,
"noUnusedLocals": false,
"pretty": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"lib": ["ES2023"],
"strict": 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/index.ts"],
"exclude": ["node_modules"]
}