mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-10-29 22:17:23 +01:00
25 lines
619 B
JSON
25 lines
619 B
JSON
{
|
|
"compilerOptions": {
|
|
"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,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"exclude": ["node_modules", "challenges", "templates", "temp"]
|
|
}
|