mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-10-29 22:17:23 +01:00
15 lines
332 B
JSON
15 lines
332 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "commonjs",
|
|
"lib": ["ESNext"],
|
|
"moduleResolution": "node",
|
|
"outDir": "./build",
|
|
"rootDir": "./cli",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true
|
|
},
|
|
"exclude": ["node_modules", "challenges", "templates", "temp", "tmp"]
|
|
}
|