[internal] Use the Node.js behavior for default imports (#12795)

This commit is contained in:
Nicolò Ribaudo
2021-03-04 13:55:15 +01:00
committed by GitHub
parent ac758f7d70
commit d9ebfab07f
6 changed files with 74 additions and 16 deletions

View File

@@ -1,9 +1,9 @@
declare module "babel-plugin-polyfill-regenerator" {
declare module.exports: Function;
declare module.exports: { default: Function };
}
declare module "babel-plugin-polyfill-corejs2" {
declare module.exports: Function;
declare module.exports: { default: Function };
}
declare module "babel-plugin-polyfill-corejs3" {
declare module.exports: Function;
declare module.exports: { default: Function };
}