1
0
mirror of https://github.com/tomasvarg/systemjs-es2015-minimal.git synced 2026-03-01 00:18:49 +00:00
systemjs-es2015-minimal/system.config.js

16 lines
377 B
JavaScript

/* global System */
System.config({
packages: {
'.': { defaultExtension: 'js' }
},
meta: {
'.': { format: 'esm' },
},
map: {
'plugin-babel': 'node_modules/systemjs-plugin-babel/plugin-babel.js',
'systemjs-babel-build': 'node_modules/systemjs-plugin-babel/systemjs-babel-browser.js'
},
transpiler: 'plugin-babel'
});