wip: typechecking

This commit is contained in:
Dax Raad
2025-09-02 03:18:13 -04:00
parent 810c9cff1d
commit 4a76224268
6 changed files with 8 additions and 3 deletions

View File

@@ -2,6 +2,7 @@
"name": "@opencode/cloud-app",
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",
"dev": "vinxi dev --host 0.0.0.0",
"dev:remote": "VITE_AUTH_URL=https://auth.dev.opencode.ai bun sst shell --stage=dev bun dev",
"build": "vinxi build",

View File

@@ -14,7 +14,7 @@ import { Actor } from "@opencode/cloud-core/actor.js"
/////////////////////////////////////
const listKeys = query(() => {
const listKeys = query(async () => {
"use server"
return withActor(() => Key.list())
}, "key.list")

View File

@@ -3,6 +3,7 @@
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,