ci: format

This commit is contained in:
Dax Raad
2025-09-09 23:43:37 -04:00
parent 58fe884327
commit 38e8c42cf0
68 changed files with 921 additions and 1018 deletions

View File

@@ -14,7 +14,7 @@ await createClient({
input: "./openapi.json",
output: {
path: "./src/gen",
tsConfigPath: path.join(dir, 'tsconfig.json')
tsConfigPath: path.join(dir, "tsconfig.json"),
},
plugins: [
{

View File

@@ -105,7 +105,7 @@ export function createOpencodeTui(options?: TuiOptions) {
const proc = spawn(`opencode`, args, {
signal: options?.signal,
stdio: 'inherit',
stdio: "inherit",
env: {
...process.env,
OPENCODE_CONFIG_CONTENT: JSON.stringify(options?.config ?? {}),

View File

@@ -6,4 +6,4 @@
/// <reference path="../../../sst-env.d.ts" />
import "sst"
export {}
export {}

View File

@@ -6,16 +6,8 @@
"module": "nodenext",
"declaration": true,
"moduleResolution": "nodenext",
"lib": [
"es2022",
"dom",
"dom.iterable"
],
"customConditions": [
"development"
]
"lib": ["es2022", "dom", "dom.iterable"],
"customConditions": ["development"]
},
"include": [
"src"
]
"include": ["src"]
}