sourcebot/packages/backend/tsconfig.json
2025-02-27 09:41:02 -08:00

32 lines
No EOL
953 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"]
}