Commit 7cbb4020 by Daniel Lee

pluginloader: esModule true for systemjs config

Supports importing a module's contents with the
'* as module' syntax. The latest version of SystemJS turns
it off per default which broke several plugins.
parent 74e90d01
......@@ -38,6 +38,9 @@ System.config({
text: 'vendor/plugin-text/text.js',
css: 'vendor/plugin-css/css.js'
},
meta: {
'*': {esModule: true}
}
});
// add cache busting
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment