mirror of
https://github.com/bknd-io/bknd/
synced 2026-08-02 08:06:00 +00:00
26 lines
680 B
JSON
26 lines
680 B
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"lib": ["ESNext", "DOM"],
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"jsx": "react",
|
|
"allowJs": true,
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": false,
|
|
"verbatimModuleSyntax": true,
|
|
"strict": true,
|
|
"outDir": "./dist",
|
|
"declarationDir": "./dist",
|
|
"declaration": true,
|
|
"skipLibCheck": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": false,
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
"rootDir": "./src",
|
|
"tsBuildInfoFile": "./dist/tsconfig.tsbuildinfo"
|
|
},
|
|
"include": ["./src/**/*"],
|
|
"exclude": ["bknd", "dist", "node_modules"]
|
|
}
|