work-sestym/backend/tsconfig.json
2026-02-28 20:58:17 +01:00

23 lines
507 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2021",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strict": true,
"strictPropertyInitialization": false,
"moduleResolution": "node",
"paths": {
"src/*": ["src/*"]
}
}
}