Skip to content

Commit c4a89d7

Browse files
committed
fix rollup config to reflect build -> cjs renaming
1 parent e6bf0e8 commit c4a89d7

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

packages/browser/rollup.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const paths = {
3737

3838
const plugins = [
3939
typescript({
40-
tsconfig: 'tsconfig.build.json',
40+
tsconfig: 'tsconfig.cjs.json',
4141
tsconfigOverride: {
4242
compilerOptions: {
4343
declaration: false,
@@ -103,7 +103,7 @@ export default [
103103
},
104104
plugins: [
105105
typescript({
106-
tsconfig: 'tsconfig.build.json',
106+
tsconfig: 'tsconfig.cjs.json',
107107
tsconfigOverride: {
108108
compilerOptions: {
109109
declaration: false,
@@ -126,7 +126,7 @@ export default [
126126
},
127127
plugins: [
128128
typescript({
129-
tsconfig: 'tsconfig.build.json',
129+
tsconfig: 'tsconfig.cjs.json',
130130
tsconfigOverride: {
131131
compilerOptions: {
132132
declaration: false,

packages/integrations/rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const terserInstance = terser({
1818

1919
const plugins = [
2020
typescript({
21-
tsconfig: 'tsconfig.build.json',
21+
tsconfig: 'tsconfig.cjs.json',
2222
tsconfigOverride: {
2323
compilerOptions: {
2424
declaration: false,

packages/tracing/rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const paths = {
3232

3333
const plugins = [
3434
typescript({
35-
tsconfig: 'tsconfig.build.json',
35+
tsconfig: 'tsconfig.cjs.json',
3636
tsconfigOverride: {
3737
compilerOptions: {
3838
declaration: false,

packages/vue/rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const paths = {
3232

3333
const plugins = [
3434
typescript({
35-
tsconfig: 'tsconfig.build.json',
35+
tsconfig: 'tsconfig.cjs.json',
3636
tsconfigOverride: {
3737
compilerOptions: {
3838
declaration: false,

packages/wasm/rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const terserInstance = terser({
1616

1717
const plugins = [
1818
typescript({
19-
tsconfig: 'tsconfig.build.json',
19+
tsconfig: 'tsconfig.cjs.json',
2020
tsconfigOverride: {
2121
compilerOptions: {
2222
declaration: false,

0 commit comments

Comments
 (0)