Add initial wrangler configuration for livedash-node project

- Created wrangler.json with project metadata and settings
- Configured D1 database binding for database interaction
- Enabled observability for monitoring
- Added placeholders for smart placement, environment variables, static assets, and service bindings
This commit is contained in:
2025-06-01 04:51:57 +02:00
parent c9e24298cd
commit 0c18e8be57
21 changed files with 14443 additions and 9721 deletions

View File

@ -8,9 +8,11 @@
"jsx": "preserve",
"lib": ["dom", "dom.iterable", "esnext"],
"module": "esnext",
"moduleResolution": "node",
"moduleResolution": "node", // bundler
"noEmit": true,
"noImplicitAny": false, // Allow implicit any types
"preserveSymlinks": false,
"types": ["./worker-configuration.d.ts"],
"paths": {
"@/*": ["./*"]
},
@ -23,10 +25,11 @@
"skipLibCheck": true,
"strict": true,
"strictNullChecks": true,
"target": "es5"
"target": "ESNext"
},
"exclude": ["node_modules"],
"include": [
"src",
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",