ci: fixes

This commit is contained in:
Dax Raad
2025-10-10 18:17:10 -04:00
parent f053862018
commit 07645e0705
5 changed files with 57 additions and 16 deletions

View File

@@ -30,7 +30,10 @@
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@cloudflare/workers-types": "4.20251008.0",
"@tsconfig/node22": "22.0.2",
"@types/bun": "1.3.0",
"@types/node": "24.7.1",
"drizzle-kit": "0.30.5",
"mysql2": "3.14.4"
}

View File

@@ -14,7 +14,7 @@ export namespace Context {
return result
},
provide<R>(value: T, fn: () => R) {
return storage.run<R>(value, fn)
return storage.run(value, fn)
},
}
}

View File

@@ -8,7 +8,8 @@
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@cloudflare/workers-types": "4.20250522.0",
"@cloudflare/workers-types": "4.20251008.0",
"@tsconfig/node22": "22.0.2",
"@types/node": "catalog:",
"openai": "5.11.0",
"typescript": "catalog:"
@@ -18,6 +19,8 @@
"@ai-sdk/openai": "2.0.2",
"@ai-sdk/openai-compatible": "1.0.1",
"@hono/zod-validator": "catalog:",
"@opencode-ai/console-core": "workspace:*",
"@opencode-ai/console-resource": "workspace:*",
"@openauthjs/openauth": "0.0.0-20250322224806",
"ai": "catalog:",
"hono": "catalog:",

View File

@@ -1,11 +1,18 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@tsconfig/bun/tsconfig.json",
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"types": ["vite/client"],
"lib": ["DOM", "DOM.Iterable"],
"allowJs": true,
"strict": true,
"noEmit": true,
"isolatedModules": true,
"paths": {
"@/*": ["./src/*"]
}