summaryrefslogtreecommitdiffhomepage
path: root/cloud/app/tsconfig.json
diff options
context:
space:
mode:
authorDax Raad <[email protected]>2025-08-30 00:58:22 -0400
committerDax Raad <[email protected]>2025-08-30 00:58:22 -0400
commitf821b555140cc41f68c7c034bb82ae0cb07d7321 (patch)
tree1f7f5b7d6534f02809bdded6ab311603930cfa0e /cloud/app/tsconfig.json
parent37f284f9a97d3354143d64fc76c2eb9f7d9ccf9e (diff)
downloadopencode-f821b555140cc41f68c7c034bb82ae0cb07d7321.tar.gz
opencode-f821b555140cc41f68c7c034bb82ae0cb07d7321.zip
ignore: cloud resource
Diffstat (limited to 'cloud/app/tsconfig.json')
-rw-r--r--cloud/app/tsconfig.json12
1 files changed, 10 insertions, 2 deletions
diff --git a/cloud/app/tsconfig.json b/cloud/app/tsconfig.json
index 7d5871a07..2a2352179 100644
--- a/cloud/app/tsconfig.json
+++ b/cloud/app/tsconfig.json
@@ -1,5 +1,9 @@
{
+ "$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
+ "customConditions": [
+ "workers"
+ ],
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
@@ -10,10 +14,14 @@
"allowJs": true,
"strict": true,
"noEmit": true,
- "types": ["vinxi/types/client"],
+ "types": [
+ "vinxi/types/client"
+ ],
"isolatedModules": true,
"paths": {
- "~/*": ["./src/*"]
+ "~/*": [
+ "./src/*"
+ ]
}
}
}