diff --git a/public/docs/_examples/.gitignore b/public/docs/_examples/.gitignore index b6733dc6ea..52b370600f 100644 --- a/public/docs/_examples/.gitignore +++ b/public/docs/_examples/.gitignore @@ -16,5 +16,6 @@ _test-output !**/*e2e-spec.js !systemjs.config.1.js +!**/systemjs.config.extras.js !_boilerplate/* _boilerplate/a2docs.css diff --git a/public/docs/_examples/upgrade-adapter/ts/systemjs.config.extras.js b/public/docs/_examples/upgrade-adapter/ts/systemjs.config.extras.js new file mode 100644 index 0000000000..607b668e68 --- /dev/null +++ b/public/docs/_examples/upgrade-adapter/ts/systemjs.config.extras.js @@ -0,0 +1,7 @@ +// #docregion +/** App specific SystemJS configuration */ +System.config({ + map: { + '@angular/upgrade/static': 'npm:@angular/upgrade/bundles/upgrade-static.umd.js', + } +});