beth-stack-example/tsconfig.json

34 lines
926 B
JSON

2023-09-12 17:58:44 +02:00
{
"compilerOptions": {
"lib": ["ESNext"],
"module": "esnext",
"target": "esnext",
"moduleResolution": "bundler",
"moduleDetection": "force",
"allowImportingTsExtensions": true,
"noEmit": true,
"composite": true,
"strict": true,
"downlevelIteration": true,
"skipLibCheck": true,
"jsx": "react",
2023-09-13 23:18:14 +02:00
"jsxFactory": "Html.createElement",
"jsxFragmentFactory": "Html.Fragment",
2023-09-12 17:58:44 +02:00
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"types": [
"bun-types" // add Bun global
2023-09-15 16:46:47 +02:00
],
2023-09-18 03:16:01 +02:00
// non bun init
2023-09-21 07:35:52 +02:00
// "plugins": [{ "name": "@kitajs/ts-html-plugin" }],
2023-09-18 03:16:01 +02:00
"noUncheckedIndexedAccess": true,
// "noUnusedLocals": true,
// "noUnusedParameters": true,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true
// "noImplicitReturns": true
2023-09-12 17:58:44 +02:00
}
}