Visual Studio 代码 `jsconfig.json` "module" 选项

Visual Studio Code `jsconfig.json` "module" option

我正在使用 jsconfig.json 配置 Visual Studio 代码以在我的项目中启用 ES6 支持。在配置文件的 compilerOptions 节点中,有一个名为 "module" 的选项,它采用四个可能值之一:

  1. commonjs
  2. amd
  3. system
  4. umd

我了解到commonjsamdumd是JS模块系统。

我的问题是 system 值是多少?这听起来像是 "default, inherit the setting from elsewhere" 类型的设置,但我找不到任何相关文档。

它是 ES6 的 System 模块加载器,已于 2014 年删除。

下面是它的外观示例: https://github.com/ModuleLoader/es6-module-loader