We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f5fb48 commit ca3ea07Copy full SHA for ca3ea07
1 file changed
packages/base/tsup.config.ts
@@ -12,7 +12,7 @@ const DEPENDENT_PATHS = [
12
'fluent-theme/src/index.ts'
13
];
14
15
-const config: typeof baseConfig = {
+const commonConfig: typeof baseConfig = {
16
...baseConfig,
17
entry: {
18
'botframework-webchat-base': './src/index.ts',
@@ -23,12 +23,12 @@ const config: typeof baseConfig = {
23
24
export default defineConfig([
25
{
26
- ...config,
+ ...commonConfig,
27
format: 'esm'
28
},
29
30
31
format: 'cjs',
32
- target: [...config.target, 'es2019']
+ target: [...commonConfig.target, 'es2019']
33
}
34
]);
0 commit comments