在esm包中import json
https://www.stefanjudis.com/snippets/how-to-import-json-files-in-es-modules-node-js/
- 自己
fs.readJSON
- 使用
const require = createRequire(import.meta.url);
在esm包中使用__dirname
import path from 'path';
import { fileURLToPath } from 'url';
const __dirname = path.dirname(fileURLToPath(import.meta.url));