diff options
author | 2023-06-13 20:42:29 -0400 | |
---|---|---|
committer | 2023-06-13 17:42:29 -0700 | |
commit | 171ba6327d995bdde473e1b723f449b3e88d1c14 (patch) | |
tree | 12a0805b2ffc97c5fb0e4282d188dc2a1c626152 | |
parent | 2ab797ff75e640e8f398b2ae003195398403d96b (diff) | |
download | bun-171ba6327d995bdde473e1b723f449b3e88d1c14.tar.gz bun-171ba6327d995bdde473e1b723f449b3e88d1c14.tar.zst bun-171ba6327d995bdde473e1b723f449b3e88d1c14.zip |
fix TS5096 (#3256)
-rw-r--r-- | packages/bun-types/scripts/bundle.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/bun-types/scripts/bundle.ts b/packages/bun-types/scripts/bundle.ts index aa91a3dfa..ce1c5ff4d 100644 --- a/packages/bun-types/scripts/bundle.ts +++ b/packages/bun-types/scripts/bundle.ts @@ -75,6 +75,8 @@ const tsConfig = { skipLibCheck: true, jsx: "react-jsx", allowImportingTsExtensions: true, + emitDeclarationOnly: true, + composite: true, allowSyntheticDefaultImports: true, forceConsistentCasingInFileNames: true, allowJs: true, |