removed durable mode as it requires an import from "cloudflare:" that often fails in non-cf environments

This commit is contained in:
dswbx
2025-08-12 14:15:06 +02:00
parent b5b4c5eef0
commit dedfb77884
17 changed files with 5854 additions and 184 deletions
+10 -7
View File
@@ -1,11 +1,9 @@
{
"compilerOptions": {
"target": "es2021",
"lib": ["es2021"],
"jsx": "react-jsx",
"module": "es2022",
"moduleResolution": "Bundler",
"types": ["./worker-configuration.d.ts"],
"lib": ["ES2022"],
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"allowJs": true,
"checkJs": false,
@@ -18,5 +16,10 @@
"skipLibCheck": true
},
"exclude": ["test"],
"include": ["worker-configuration.d.ts", "src/**/*.ts"]
"include": [
"worker-configuration.d.ts",
"bknd-types.d.ts",
"bknd.config.ts",
"src/**/*.ts"
]
}