mirror of
https://github.com/systemjs/systemjs.git
synced 2026-01-18 14:53:14 +00:00
13 lines
320 B
JavaScript
13 lines
320 B
JavaScript
global.System = require('../dist/system.src.js');
|
|
|
|
System.config({
|
|
baseURL: 'test/',
|
|
map: {
|
|
'plugin-babel': './node_modules/systemjs-plugin-babel/plugin-babel.js',
|
|
'systemjs-babel-build': './node_modules/systemjs-plugin-babel/systemjs-babel-node.js'
|
|
},
|
|
transpiler: 'plugin-babel'
|
|
});
|
|
|
|
require('./test');
|