22 lines
582 B
JSON
22 lines
582 B
JSON
{
|
|||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"lib": ["ES2022", "DOM"],
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"allowImportingTsExtensions": true,
|
||
|
|
"noEmit": true,
|
||
|
|
"strict": true,
|
||
|
|
"noUncheckedIndexedAccess": true,
|
||
|
|
"noImplicitReturns": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"noImplicitOverride": true,
|
||
|
|
"exactOptionalPropertyTypes": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"types": ["bun"],
|
||
|
|
"verbatimModuleSyntax": true
|
||
|
|
},
|
||
|
|
"include": ["./**/*.ts", "../build.ts", "../glob-sources.ts"],
|
||
|
|
"exclude": ["node_modules"]
|
||
|
|
}
|