Skip to content

Commit

Permalink
build: change rollup target to ES2018 (#2419)
Browse files Browse the repository at this point in the history
  • Loading branch information
amirhhashemi authored Feb 28, 2024
1 parent a1a779e commit 06bcba8
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,11 @@ function getBabelOptions(targets) {
}
}

function getEsbuild(target, env = 'development') {
function getEsbuild(env = 'development') {
return esbuild({
minify: env === 'production',
target,
target: 'es2018',
supported: { 'import-meta': true },
tsconfig: path.resolve('./tsconfig.json'),
})
}
Expand Down Expand Up @@ -78,7 +79,7 @@ function createESMConfig(input, output, clientOnly) {
delimiters: ['\\b', '\\b(?!(\\.|/))'],
preventAssignment: true,
}),
getEsbuild('node12'),
getEsbuild(),
banner2(() => clientOnly && cscComment),
],
}
Expand Down Expand Up @@ -157,7 +158,7 @@ function createSystemConfig(input, output, env, clientOnly) {
delimiters: ['\\b', '\\b(?!(\\.|/))'],
preventAssignment: true,
}),
getEsbuild('node12', env),
getEsbuild(env),
banner2(() => clientOnly && cscComment),
],
}
Expand Down

0 comments on commit 06bcba8

Please sign in to comment.