mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 20:37:21 +00:00
* removed `durable` mode as it requires an import from "cloudflare:" that often fails in non-cf environments * remove worker configuration types * add `withPlatformProxy` * withPlatformProxy: make configuration optional
26 lines
560 B
JSON
26 lines
560 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["ES2022"],
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"noImplicitAny": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"exclude": ["test"],
|
|
"include": [
|
|
"worker-configuration.d.ts",
|
|
"bknd-types.d.ts",
|
|
"bknd.config.ts",
|
|
"src/**/*.ts"
|
|
]
|
|
}
|