1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-07-18 02:20:12 +02:00
programming-challenges/tsconfig.json

25 lines
619 B
JSON
Raw Normal View History

2020-07-05 15:48:51 +02:00
{
"compilerOptions": {
"target": "ES2020",
2020-09-29 10:20:55 +02:00
"module": "commonjs",
"lib": ["ES2020"],
2020-09-29 10:20:55 +02:00
"moduleResolution": "node",
"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,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
2020-09-29 10:20:55 +02:00
"forceConsistentCasingInFileNames": true
},
"exclude": ["node_modules", "challenges", "templates", "temp"]
2020-07-05 15:48:51 +02:00
}