Skip to content

Commit

Permalink
chore: add keepNames tsup option (#7385)
Browse files Browse the repository at this point in the history
  • Loading branch information
DTrombett committed Feb 2, 2022
1 parent 0883943 commit 34120bb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/builders/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export const tsup: Options = {
entryPoints: ['src/index.ts'],
format: ['esm', 'cjs'],
minify: true,
keepNames: true,
skipNodeModulesBundle: true,
sourcemap: true,
target: 'es2021',
Expand Down
1 change: 1 addition & 0 deletions packages/rest/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export const tsup: Options = {
entryPoints: ['src/index.ts'],
format: ['esm', 'cjs'],
minify: true,
keepNames: true,
skipNodeModulesBundle: true,
sourcemap: true,
target: 'es2021',
Expand Down
1 change: 1 addition & 0 deletions packages/voice/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export default defineConfig({
entryPoints: ['src/index.ts'],
format: ['esm', 'cjs'],
minify: true,
keepNames: true,
skipNodeModulesBundle: true,
sourcemap: true,
target: 'es2021',
Expand Down

0 comments on commit 34120bb

Please sign in to comment.