Bun is the runtime, bundler, test runner and SQLite driver, so zod is the only dependency. Strict TS with noUncheckedIndexedAccess. Co-Authored-By: Claude Opus 5 (1M context) <[email protected]>
20 lines
502 B
JSON
20 lines
502 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["ESNext", "DOM"],
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"types": ["bun-types"],
|
|
"allowImportingTsExtensions": true,
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitOverride": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"skipLibCheck": true,
|
|
"verbatimModuleSyntax": true
|
|
},
|
|
"include": ["src", "test", "scripts"]
|
|
}
|