From 79e15346b255485dfe3e89a686dfe1de2460433e Mon Sep 17 00:00:00 2001 From: liliangrong777 <58727146+liliangrong777@users.noreply.github.com> Date: Wed, 10 Apr 2024 17:32:06 +0800 Subject: [PATCH] Update module-loader.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix: 内容修正 --- docs/module-loader.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/module-loader.md b/docs/module-loader.md index ce8082cc..ecea1157 100644 --- a/docs/module-loader.md +++ b/docs/module-loader.md @@ -397,7 +397,7 @@ import submodule from './node_modules/es-module-package/private-module.js'; } ``` -由于`exports`字段只有支持 ES6 的 Node.js 才认识,所以可以用来兼容旧版本的 Node.js。 +由于`exports`字段只有支持 ES6 的 Node.js 才认识,所以可以用`main`字段来兼容旧版本的 Node.js。 ```javascript {