beth-stack-example/tsconfig.json

36 lines
985 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig.json",
"compilerOptions": {
"rootDir": ".",
"lib": ["ESNext"],
"module": "esnext",
"target": "esnext",
"moduleResolution": "bundler",
"moduleDetection": "force",
"allowImportingTsExtensions": true,
"noEmit": true,
"composite": true,
"strict": true,
"strictNullChecks": true,
"downlevelIteration": true,
"skipLibCheck": true,
"jsx": "react",
"jsxFactory": "Html.createElement",
"jsxFragmentFactory": "Html.Fragment",
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"types": [
"bun-types", // add Bun global
"bun-postcss-plugin"
],
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true
},
"files": [".eslintrc.cjs"],
"include": ["**/*", "**/*.d.ts"],
"exclude": ["./node_modules"]
}