aboutsummaryrefslogtreecommitdiff
path: root/packages/bun-error/tsconfig.json
diff options
context:
space:
mode:
authorGravatar John Daly <john.daly2@gmail.com> 2022-07-16 15:14:14 -0700
committerGravatar GitHub <noreply@github.com> 2022-07-16 15:14:14 -0700
commit3c0f18f704fac1e27a0bc5fe82c8e084e411acb3 (patch)
tree24502f4c7c65317bc011906905aa3c231a67718f /packages/bun-error/tsconfig.json
parentf7e9b91701d60f1f1a319acf799871c20aee007a (diff)
downloadbun-3c0f18f704fac1e27a0bc5fe82c8e084e411acb3.tar.gz
bun-3c0f18f704fac1e27a0bc5fe82c8e084e411acb3.tar.zst
bun-3c0f18f704fac1e27a0bc5fe82c8e084e411acb3.zip
fix/clean-up-bun-error (#753)
* Fixing TypeScript errors in bun-error package * Fixing import path * Removing unused 'isClient' prop from AsyncSourceLines * PR feedback
Diffstat (limited to '')
-rw-r--r--packages/bun-error/tsconfig.json10
1 files changed, 10 insertions, 0 deletions
diff --git a/packages/bun-error/tsconfig.json b/packages/bun-error/tsconfig.json
new file mode 100644
index 000000000..c125976f1
--- /dev/null
+++ b/packages/bun-error/tsconfig.json
@@ -0,0 +1,10 @@
+{
+ "compilerOptions": {
+ "jsx": "react",
+ "lib": ["ESNext", "DOM"],
+ "module": "esnext",
+ "target": "esnext",
+ "moduleResolution": "node",
+ "allowSyntheticDefaultImports": true,
+ }
+}