mirror of
https://github.com/bknd-io/bknd/
synced 2026-08-02 16:16:02 +00:00
52 lines
1.4 KiB
JSON
52 lines
1.4 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"composite": false,
|
|
"incremental": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"jsx": "react-jsx",
|
|
"allowImportingTsExtensions": false,
|
|
"target": "es2023",
|
|
"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,
|
|
"rootDir": ".",
|
|
"outDir": "./dist/types",
|
|
"paths": {
|
|
"*": ["./src/*"],
|
|
"bknd": ["./src/index.ts"],
|
|
"bknd/utils": ["./src/core/utils/index.ts"],
|
|
"bknd/adapter": ["./src/adapter/index.ts"],
|
|
"bknd/adapter/*": ["./src/adapter/*/index.ts"],
|
|
"bknd/client": ["./src/ui/client/index.ts"],
|
|
"bknd/modes": ["./src/modes/index.ts"],
|
|
"bknd/elements": ["./src/ui/elements/index.ts"]
|
|
}
|
|
},
|
|
"include": [
|
|
"./src/**/*.ts",
|
|
"./src/**/*.tsx",
|
|
"vite.dev.ts",
|
|
"build.ts",
|
|
"build.cli.ts",
|
|
"__test__",
|
|
"e2e/**/*.ts"
|
|
],
|
|
"exclude": ["node_modules", "dist", "dist/types", "**/*.d.ts"]
|
|
}
|