Server/project/tsconfig.base.json

18 lines
410 B
JSON
Raw Normal View History

2023-03-03 16:23:46 +01:00
{
"compilerOptions": {
"allowJs": false,
"module": "CommonJS",
"target": "ES2022",
2023-03-03 16:23:46 +01:00
"allowSyntheticDefaultImports": true,
"moduleResolution": "Node10",
2023-03-03 16:23:46 +01:00
"esModuleInterop": true,
"downlevelIteration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true
},
"include": [
"src/*",
"src/**/*"
]
}