美文网首页
typescript集萃

typescript集萃

作者: taiyosen | 来源:发表于2023-04-23 20:21 被阅读0次

    在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));
    

    相关文章

      网友评论

          本文标题:typescript集萃

          本文链接:https://www.haomeiwen.com/subject/deuyjdtx.html