This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
api/tsconfig.json
2021-10-24 04:06:16 +02:00

25 lines
596 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"lib": ["ES2020"],
"moduleResolution": "node",
"allowJs": false,
"checkJs": false,
"declaration": false,
"sourceMap": false,
"outDir": "./build",
"rootDir": "./src",
"removeComments": true,
"noEmitOnError": true,
"importHelpers": false,
"strict": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"forceConsistentCasingInFileNames": true,
"incremental": false
},
"exclude": ["node_modules", "./temp/*"]
}