10 lines
345 B
TypeScript
10 lines
345 B
TypeScript
import 'systemjs/dist/system';
|
|
// Add ability to load plugins bundled as AMD format
|
|
import 'systemjs/dist/extras/amd';
|
|
// Add named register for on demand dependency loading
|
|
import 'systemjs/dist/extras/named-register.js';
|
|
// Add ability to load plugins bundled as CJS format
|
|
import 'systemjs-cjs-extra';
|
|
|
|
export const SystemJS = window.System;
|