1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-10-29 22:17:23 +01:00

chore: simplify tsconfig.json

This commit is contained in:
Divlo 2021-06-30 13:49:18 +02:00
parent 70e7c937d0
commit 57950426d3
No known key found for this signature in database
GPG Key ID: 185ED2F15F104E52

View File

@ -1,24 +1,14 @@
{
"compilerOptions": {
"target": "ES2020",
"target": "ESNext",
"module": "commonjs",
"lib": ["ES2020"],
"lib": ["ESNext"],
"moduleResolution": "node",
"allowJs": false,
"checkJs": false,
"declaration": false,
"sourceMap": false,
"outDir": "./build",
"rootDir": "./cli",
"removeComments": true,
"noEmitOnError": true,
"importHelpers": false,
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"forceConsistentCasingInFileNames": true
"esModuleInterop": true
},
"exclude": ["node_modules", "challenges", "templates", "temp"]
"exclude": ["node_modules", "challenges", "templates", "temp", "tmp"]
}