mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 12:37:20 +00:00
27 lines
692 B
JSON
27 lines
692 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",
|
|
"baseUrl": "src",
|
|
"tsBuildInfoFile": "dist/tsconfig.tsbuildinfo"
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["bknd", "dist", "node_modules"]
|
|
}
|