Skip to content

Commit d3fd9cb

Browse files
hubgitdarthtrevino
andauthored
Fix babelEsmConfig path (#2990)
Set the correct path for the ESM Babel config file Co-authored-by: Chris Trevino <[email protected]>
1 parent cc032b0 commit d3fd9cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/build/src/tasks/babel.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import plumber = require('gulp-plumber')
88

99
/* eslint-disable @typescript-eslint/no-var-requires */
1010
const babelCjsConfig = require('../../config/babel.config.cjs')
11-
const babelEsmConfig = require('../../config/babel.config.cjs')
11+
const babelEsmConfig = require('../../config/babel.config')
1212
/* eslint-enable @typescript-eslint/no-var-requires */
1313

1414
const BABEL_GLOBS = ['lib/**/*.js']

0 commit comments

Comments
 (0)