xgqfrms™, xgqfrms® : xgqfrms's offical website of cnblogs! xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!

how babel compiler convert ESM to CJS In Depth All In One

how babel compiler convert ESM to CJS In Depth All In One

babel compiler 编译器实现原理

TypeScript esModuleInterop

ES Module Interop / ES 模块互操作

tsconfig.json

{
  "compilerOptions": {
    "jsx": "react",
    "target": "es2015",
    "module": "commonjs",
    "strict": true,
    "esModuleInterop": true,// ✅
    "forceConsistentCasingInFileNames": true,
    "noImplicitAny": false,
    "strictPropertyInitialization": false,
    "downlevelIteration": false,
    "noImplicitOverride": true
  }
}

https://www.typescriptlang.org/tsconfig/#esModuleInterop

https://www.typescriptlang.org/zh/tsconfig#esModuleInterop

image

https://www.typescriptlang.org/play

image

https://stackoverflow.com/questions/56238356/understanding-esmoduleinterop-in-tsconfig-file

demos

https://babeljs.io/repl/#

ESM

// ESM
export const a = 1;
export const b = 2;
export const c = (str) => console.log(str);
export default () => {
  return 3;
};

"use strict";

Object.defineProperty(exports, "__esModule", {
  value: true
});
exports.default = exports.b = exports.a = void 0;

const a = 1;
exports.a = a;
const b = 2;
exports.b = b;
const c = str => console.log(str);
exports.c = c;
var _default = () => {
  return 3;
};

exports.default = _default;

CJS

// CJS
module.exports = {
  a: 1,
  b: 2,
  c: (str) => console.log(str),
  default: function(){return 3;}
}

"use strict";

// CJS
module.exports = {
  a: 1,
  b: 2,
  c: str => console.log(str),
  default: function () {
    return 3;
  }
};

(🐞 反爬虫测试!打击盗版⚠️)如果你看到这个信息, 说明这是一篇剽窃的文章,请访问 https://www.cnblogs.com/xgqfrms/ 查看原创文章!

refs

https://juejin.cn/post/6844904126195695624



©xgqfrms 2012-2021

www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!

原创文章,版权所有©️xgqfrms, 禁止转载 🈲️,侵权必究⚠️!


posted @ 2022-12-09 20:40  xgqfrms  阅读(32)  评论(1编辑  收藏  举报