2026-08-12 21:07:06 +09:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2022",
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "Bundler",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"skipLibCheck": true,
|
2026-08-17 19:16:57 +08:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"noImplicitReturns": true,
|
2026-08-12 21:07:06 +09:00
|
|
|
"noUncheckedIndexedAccess": true,
|
2026-08-17 19:16:57 +08:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
2026-08-12 21:07:06 +09:00
|
|
|
"noEmit": true,
|
|
|
|
|
"types": ["bun"]
|
|
|
|
|
},
|
|
|
|
|
"include": ["src", "scripts"]
|
|
|
|
|
}
|