Files
workavia-drive/tdrive/backend/node/tsconfig.json
T
2024-05-07 17:01:56 +01:00

24 lines
519 B
JSON

{
"compilerOptions": {
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"module": "commonjs",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"target": "ESNext",
"noImplicitAny": false,
"moduleResolution": "node",
"sourceMap": true,
"outDir": "dist",
"baseUrl": ".",
"paths": {
"*": [
"src/types/*"
],
"src/*": ["src/*"]
}
},
"include": [
"src/**/*"
]
}