2020-07-05 15:48:51 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-06-09 20:31:45 +02:00
|
|
|
"target": "ES2020",
|
2020-09-29 10:20:55 +02:00
|
|
|
"module": "commonjs",
|
2021-06-09 20:31:45 +02:00
|
|
|
"lib": ["ES2020"],
|
2020-09-29 10:20:55 +02:00
|
|
|
"moduleResolution": "node",
|
2021-06-09 20:31:45 +02:00
|
|
|
"allowJs": false,
|
|
|
|
"checkJs": false,
|
|
|
|
"declaration": false,
|
|
|
|
"sourceMap": false,
|
|
|
|
"outDir": "./build",
|
|
|
|
"rootDir": "./cli",
|
|
|
|
"removeComments": true,
|
|
|
|
"noEmitOnError": true,
|
|
|
|
"importHelpers": false,
|
2020-09-29 10:20:55 +02:00
|
|
|
"strict": true,
|
|
|
|
"skipLibCheck": true,
|
2021-06-09 20:31:45 +02:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
2020-09-29 10:20:55 +02:00
|
|
|
"forceConsistentCasingInFileNames": true
|
2021-06-09 20:31:45 +02:00
|
|
|
},
|
|
|
|
"exclude": ["node_modules", "challenges", "templates", "temp"]
|
2020-07-05 15:48:51 +02:00
|
|
|
}
|