Files
bknd/examples/bun/tsconfig.json
2026-03-24 13:59:05 -06:00

23 lines
565 B
JSON

{
"compilerOptions": {
"lib": ["ESNext", "DOM"],
"target": "ES2022",
"module": "ESNext",
"jsx": "react-jsx",
"allowJs": true,
"moduleResolution": "bundler",
"isolatedModules": true,
"esModuleInterop": true,
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false,
},
"include": ["index.ts"]
}