mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
27 lines
726 B
JSON
27 lines
726 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["ESNext", "DOM"],
|
|
"moduleResolution": "NodeNext",
|
|
"module": "NodeNext",
|
|
"target": "ESNext",
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"noImplicitOverride": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"noImplicitReturns": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"allowImportingTsExtensions": true,
|
|
"verbatimModuleSyntax": true,
|
|
"isolatedModules": true,
|
|
"isolatedDeclarations": true,
|
|
"declaration": true,
|
|
"jsx": "react-jsx"
|
|
},
|
|
"include": ["./**/*.tsx", "./**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|