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

13 lines
264 B
JSON
Raw Normal View History

2020-07-05 15:48:51 +02:00
{
"compilerOptions": {
2020-11-15 10:56:27 +01:00
"target": "ES2019",
2020-09-29 10:20:55 +02:00
"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
}
}