1
0
mirror of https://github.com/theoludwig/programming-challenges.git synced 2025-12-11 00:21:24 +01:00

feat: rewrite programming-challenges CLI (#3)

This commit is contained in:
Divlo
2021-06-09 20:31:45 +02:00
committed by GitHub
parent 7aa12f313e
commit 677a55a9d8
256 changed files with 16829 additions and 1881 deletions

View File

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