vendaweb-api/tsconfig.json

20 lines
414 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/*"]
},
2025-01-27 20:44:27 +00:00
"incremental": true
},
"exclude": ["node_modules", "dist"]
}