beth-stack-example/tsconfig.json

36 lines
985 B
JSON

2023-09-12 17:58:44 +02:00
{
"$schema": "https://json.schemastore.org/tsconfig.json",
2023-09-12 17:58:44 +02:00
"compilerOptions": {
"rootDir": ".",
2023-09-12 17:58:44 +02:00
"lib": ["ESNext"],
"module": "esnext",
"target": "esnext",
"moduleResolution": "bundler",
"moduleDetection": "force",
"allowImportingTsExtensions": true,
"noEmit": true,
"composite": true,
"strict": true,
2023-10-07 00:01:32 +02:00
"strictNullChecks": true,
2023-09-12 17:58:44 +02:00
"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
"bun-postcss-plugin"
2023-09-15 16:46:47 +02:00
],
2023-09-18 03:16:01 +02:00
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true
},
"files": [".eslintrc.cjs"],
"include": ["**/*", "**/*.d.ts"],
"exclude": ["./node_modules"]
2023-09-12 17:58:44 +02:00
}