summaryrefslogtreecommitdiffhomepage
path: root/cloud/app/tsconfig.json
diff options
context:
space:
mode:
authorDax Raad <[email protected]>2025-08-15 19:29:24 -0400
committerDax Raad <[email protected]>2025-08-15 19:29:42 -0400
commit07cf8847fb1908ff5dc47a771f57d23926baa1ce (patch)
treeaef73a8ac42e755404cb56107137a7fc4eff3ffd /cloud/app/tsconfig.json
parent650e67f1dfd4790152c70864da6c1ade4884ab58 (diff)
downloadopencode-07cf8847fb1908ff5dc47a771f57d23926baa1ce.tar.gz
opencode-07cf8847fb1908ff5dc47a771f57d23926baa1ce.zip
wip: cloud stuff
Diffstat (limited to 'cloud/app/tsconfig.json')
-rw-r--r--cloud/app/tsconfig.json19
1 files changed, 19 insertions, 0 deletions
diff --git a/cloud/app/tsconfig.json b/cloud/app/tsconfig.json
new file mode 100644
index 000000000..7d5871a07
--- /dev/null
+++ b/cloud/app/tsconfig.json
@@ -0,0 +1,19 @@
+{
+ "compilerOptions": {
+ "target": "ESNext",
+ "module": "ESNext",
+ "moduleResolution": "bundler",
+ "allowSyntheticDefaultImports": true,
+ "esModuleInterop": true,
+ "jsx": "preserve",
+ "jsxImportSource": "solid-js",
+ "allowJs": true,
+ "strict": true,
+ "noEmit": true,
+ "types": ["vinxi/types/client"],
+ "isolatedModules": true,
+ "paths": {
+ "~/*": ["./src/*"]
+ }
+ }
+}