1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-11-09 22:08:58 +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": { "compilerOptions": {
"target": "ES2020", "target": "ESNext",
"module": "commonjs", "module": "commonjs",
"lib": ["ES2020"], "lib": ["ESNext"],
"moduleResolution": "node", "moduleResolution": "node",
"allowJs": false,
"checkJs": false,
"declaration": false,
"sourceMap": false,
"outDir": "./build", "outDir": "./build",
"rootDir": "./cli", "rootDir": "./cli",
"removeComments": true,
"noEmitOnError": true,
"importHelpers": false,
"strict": true, "strict": true,
"skipLibCheck": true, "skipLibCheck": true,
"esModuleInterop": true, "esModuleInterop": true
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"forceConsistentCasingInFileNames": true
}, },
"exclude": ["node_modules", "challenges", "templates", "temp"] "exclude": ["node_modules", "challenges", "templates", "temp", "tmp"]
} }