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

13 lines
264 B
JSON
Raw Normal View History

2020-07-05 15:48:51 +02:00
{
"compilerOptions": {
2020-09-29 10:20:55 +02:00
"target": "ES2018",
"module": "commonjs",
"moduleResolution": "node",
"strict": true,
"esModuleInterop": true,
2020-07-05 15:48:51 +02:00
"resolveJsonModule": true,
2020-09-29 10:20:55 +02:00
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
2020-07-05 15:48:51 +02:00
}
}