When configuring a tsconfig.json file, one option that can be entered as the value for the compilerOptions 'module' property is:
System
This results in the following format:
{
"compilerOptions": {
"module": "System",
...
Is the 'System' referring to SystemJS (meaning if SystemJS is used as the module loader, 'System' always needs to be included in tsconfig.json when creating an AngularJS or Angular app)? The documentation does not clearly address this:
https://www.typescriptlang.org/docs/handbook/compiler-options.html
In Visual Studio project configurations for TypeScript, there is also a 'System' option found under 'TypeScript Build > Module system'. This likely corresponds to the same concept as the 'System' specified in the tsconfig.json.