advent-of-code/tsconfig.json

13 lines
254 B
JSON
Raw Permalink Normal View History

2023-11-29 14:57:17 +00:00
{
"extends": ["@tsconfig/strictest"],
"compilerOptions": {
"lib": ["ESNext"],
"module": "esnext",
"target": "esnext",
"moduleResolution": "bundler",
"moduleDetection": "force",
"noEmit": true,
"types": ["bun-types"]
}
}