Commit 81814b610fa7

Vincent Demeester <vincent@sbr.pm>
2026-03-17 16:28:52
chore(pi-ext): add tsconfig for bun-types resolution
Added tsconfig.json to github and guardrails extensions so the LSP resolves bun:test types correctly.
1 parent 7ac0710
Changed files (2)
dots
pi
agent
extensions
dots/pi/agent/extensions/github/tsconfig.json
@@ -0,0 +1,13 @@
+{
+  "compilerOptions": {
+    "target": "ESNext",
+    "module": "ESNext",
+    "moduleResolution": "bundler",
+    "esModuleInterop": true,
+    "strict": true,
+    "skipLibCheck": true,
+    "noEmit": true,
+    "types": ["bun-types"]
+  },
+  "include": ["*.ts", "actions/*.ts"]
+}
dots/pi/agent/extensions/guardrails/tsconfig.json
@@ -0,0 +1,13 @@
+{
+  "compilerOptions": {
+    "target": "ESNext",
+    "module": "ESNext",
+    "moduleResolution": "bundler",
+    "esModuleInterop": true,
+    "strict": true,
+    "skipLibCheck": true,
+    "noEmit": true,
+    "types": ["bun-types"]
+  },
+  "include": ["*.ts"]
+}