2
1
mirror of https://github.com/Thream/api.git synced 2024-07-12 15:50:11 +02:00
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/*"]
}