mirror of
https://github.com/systemjs/systemjs.git
synced 2026-01-18 14:53:14 +00:00
17 lines
337 B
JavaScript
17 lines
337 B
JavaScript
global.System = require('../dist/system.src.js');
|
|
|
|
System.config({
|
|
baseURL: 'test/',
|
|
traceurOptions: {
|
|
asyncFunctions: true
|
|
},
|
|
warnings: true,
|
|
map: {
|
|
'plugin-traceur': './node_modules/systemjs-plugin-traceur/plugin-traceur.js',
|
|
'traceur': '@node/traceur'
|
|
},
|
|
transpiler: 'plugin-traceur'
|
|
});
|
|
|
|
require('./test');
|