advent_of_code_2023/tsconfig.json

11 lines
196 B
JSON
Raw Normal View History

2023-12-06 19:39:05 +00:00
{
"compilerOptions": {
2023-12-10 12:21:35 +00:00
"target": "ES2022",
2023-12-06 19:39:05 +00:00
"module": "commonjs",
"strict": true,
"esModuleInterop": true
},
"include": [
"Day**/ts/*.ts"
2023-12-06 19:39:05 +00:00
]
}