rollup 2.x 版本是可以直接这么写的:
// rollup.config.js
import pkg from "./package.json";
升级 3.15 后报错;
[!] TypeError: Module "./package.json" needs an import assertion of type "json"
修改后 eslint 又会报错:
// rollup.config.js
import pkg from "./package.json" assert { type: "json" };
// Parsing error: Unexpected token assert ← eslint
进一步解决:
cnpm i -D eslint @babel/core @babel/eslint-parser @babel/plugin-syntax-import-assertions
// .eslintrc.js
"parser": "@babel/eslint-parser",
"parserOptions": {
"requireConfigFile": false,
"babelOptions": {
"plugins": [
'@babel/plugin-syntax-import-assertions'
],
},
"ecmaVersion": "latest",
"sourceType": "module",
},
就挺麻烦的 - -
· · · · · ·
「折腾」 ESLint 安装与使用_电脑网络_沉冰浮水:
https://www.wdssmq.com/post/20190917021.html
Support of assert {type: "json"}
· Discussion #15305 · eslint/eslint:
https://github.com/eslint/eslint/discussions/15305#discussioncomment-2508948
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.