Skip to content

Commit ca3ea07

Browse files
committed
Clean up
1 parent 2f5fb48 commit ca3ea07

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

packages/base/tsup.config.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const DEPENDENT_PATHS = [
1212
'fluent-theme/src/index.ts'
1313
];
1414

15-
const config: typeof baseConfig = {
15+
const commonConfig: typeof baseConfig = {
1616
...baseConfig,
1717
entry: {
1818
'botframework-webchat-base': './src/index.ts',
@@ -23,12 +23,12 @@ const config: typeof baseConfig = {
2323

2424
export default defineConfig([
2525
{
26-
...config,
26+
...commonConfig,
2727
format: 'esm'
2828
},
2929
{
30-
...config,
30+
...commonConfig,
3131
format: 'cjs',
32-
target: [...config.target, 'es2019']
32+
target: [...commonConfig.target, 'es2019']
3333
}
3434
]);

0 commit comments

Comments
 (0)