{
// 兼容旧版的 CommonJs
"main": "utils.js",
// exports 优先级高于 main, 只有支持 ES6 的 Nodejs 才认识该字段
"exports": {
"import": "./index.mjs",
"default": ".index.js"
}
}/;
Dual CommonJS/ES module packages
根据 Nodejs 官方文档的解释
package.json 中 module 字段并不被 Nodejs 所识别,只能被一些构建工具所识别