mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-15 20:17:22 +00:00
30 lines
863 B
JSON
30 lines
863 B
JSON
{
|
|
"compilerOptions": {
|
|
"composite": false,
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": false,
|
|
"target": "ES2022",
|
|
"noImplicitAny": false,
|
|
"allowJs": true,
|
|
"verbatimModuleSyntax": true,
|
|
"declaration": true,
|
|
"strict": true,
|
|
"allowUnusedLabels": false,
|
|
"allowUnreachableCode": false,
|
|
"exactOptionalPropertyTypes": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["./src/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|