node 运行报错
Warning: To load an ES module, set "type": "module" in the package.json or use the .mjs extension.
解决
package.json
{
...
"type": "module",
"version": "1.0.0",
...
}

node 运行报错
Warning: To load an ES module, set "type": "module" in the package.json or use the .mjs extension.
解决
package.json
{
...
"type": "module",
"version": "1.0.0",
...
}