edtech / apps /api /tsconfig.json
CognxSafeTrack
Refactor: Technical Debt Repayment (Clean Dashboard, Strict Typing, Pino Logging, SQL Migration)
de6a95b
raw
history blame
536 Bytes
{
"extends": "@repo/tsconfig/base.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src",
"module": "CommonJS",
"strict": true,
"moduleResolution": "node",
"noEmit": false,
"allowImportingTsExtensions": false,
"target": "ES2020",
"lib": [
"ES2020"
],
"types": [
"node"
],
"esModuleInterop": true,
"allowSyntheticDefaultImports": true
},
"include": [
"src/**/*"
]
}