DefinitelyTyped/types/systemjs/systemjs-tests.ts
2017-09-04 12:23:28 +02:00

65 lines
997 B
TypeScript

import SystemJS = require('systemjs');
SystemJS.config({
baseURL: '/app'
});
SystemJS.import('main.js');
SystemJS.config({
// or 'traceur' or 'typescript'
transpiler: 'babel',
// or traceurOptions or typescriptOptions
babelOptions: {
}
});
SystemJS.config({
map: {
traceur: 'path/to/traceur.js'
}
});
SystemJS.config({
meta: {
'*': {
authorization: true
}
}
});
SystemJS.config({
meta: {
'*': {
authorization: 'Basic YWxhZGRpbjpvcGVuc2VzYW1l'
}
}
});
SystemJS.config({
map: {
'local/package': {
x: 'vendor/x.js'
},
'another/package': {
x: 'vendor/y.js'
}
}
});
SystemJS.transpiler = 'traceur';
// loads './app.js' from the current directory
SystemJS.import('./app.js').then(function (m) {
console.log(m);
});
SystemJS.import('lodash').then(function (_) {
console.log(_);
});
const clonedSystemJSJS = new SystemJS.constructor();