Skip to content

Commit c0115ea

Browse files
committed
Rollup JS files with rollup-typescript-plugin
The rollup-typescript-plugin does not transpile JS files using the TS compiler by default. This means that external dependencies that provide JS bundles will not be transpiled to the target ES version specified in the TypeScript config used by the plugin. This resulted in one of our dependencies (https://github.com/jakearchibald/idb) being included in the CDN bundles without being transpiled to ES5 (the target ES version). Since this dependencies bundle uses ES2018 syntax (object spread operator `{ ...x }`), this upgraded our CDN bundles' minimum ES version requirement to ES2018 which isn't compatible with older browser versions. To see the ES2018 syntax in one of the CDN bundles, see https://www.gstatic.com/firebasejs/10.13.1/firebase-app.js and search for `...oldTraps`.
1 parent 79f38be commit c0115ea

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

packages/firebase/rollup.config.js

+2
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ const typescriptPlugin = rollupTypescriptPlugin({
3636

3737
const typescriptPluginCDN = rollupTypescriptPlugin({
3838
typescript,
39+
allowJs: true,
40+
include: ['*.ts', '**/*.ts', '*.js', '**/*.js'],
3941
tsconfigOverride: {
4042
compilerOptions: {
4143
declaration: false

0 commit comments

Comments
 (0)