Server/project/base_tsconfig.json

20 lines
444 B
JSON
Raw Normal View History

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