diff options
author | 2022-07-16 15:14:14 -0700 | |
---|---|---|
committer | 2022-07-16 15:14:14 -0700 | |
commit | 3c0f18f704fac1e27a0bc5fe82c8e084e411acb3 (patch) | |
tree | 24502f4c7c65317bc011906905aa3c231a67718f /packages/bun-error/tsconfig.json | |
parent | f7e9b91701d60f1f1a319acf799871c20aee007a (diff) | |
download | bun-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.json | 10 |
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, + } +} |