1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-10-29 22:17:23 +01:00
programming-challenges/tsconfig.json
2023-01-10 23:15:36 +01:00

16 lines
388 B
JSON

{
"extends": "@tsconfig/strictest/tsconfig.json",
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"lib": ["ESNext"],
"moduleResolution": "node",
"outDir": "./build",
"rootDir": "./cli",
"noEmit": true,
"checkJs": false,
"exactOptionalPropertyTypes": false
},
"exclude": ["node_modules", "challenges", "templates", "temp", "tmp"]
}