Reputation: 1996
I'm using jsconfig.json to configure Visual Studio code to enable ES6 support in my project. In the compilerOptions
node of the config file there is an option called "module" that takes one of four possible values:
commonjs
amd
system
umd
I understand that commonjs
, amd
and umd
are JS module systems.
My question is what is the system
value? It sounds like a "default, inherit the setting from elsewhere" type of setting but I cannot find any documentation on it.
Upvotes: 3
Views: 1046
Reputation: 7408
It's ES6's System
module loader, which was removed in 2014.
Here's an example of how it looks like: https://github.com/ModuleLoader/es6-module-loader
Upvotes: 1