vendaweb-api/tsconfig.json

22 lines
461 B
JSON
Raw Normal View History

2025-01-27 20:44:27 +00:00
{
"compilerOptions": {
"module": "commonjs",
2025-03-14 01:27:19 +00:00
"esModuleInterop": true,
2025-01-27 20:44:27 +00:00
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es2017",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
2025-03-14 01:27:19 +00:00
"paths": {
"src/*": ["./src/*"]
},
2026-01-08 20:19:06 +00:00
"incremental": true,
"skipLibCheck": true,
"strict": false
2025-01-27 20:44:27 +00:00
},
"exclude": ["node_modules", "dist"]
}