mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
25 lines
653 B
JSON
25 lines
653 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"
|
|
}
|
|
}
|