From d1b7bb52e75a68d38d8dffa4d7e8a6405be90d49 Mon Sep 17 00:00:00 2001 From: Brandon Roberts Date: Tue, 9 Oct 2018 16:19:52 -0400 Subject: [PATCH] docs: add note for including polyfills for StackBlitz examples (#25892) PR Close #25892 --- aio/tools/examples/shared/boilerplate/cli/src/polyfills.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/aio/tools/examples/shared/boilerplate/cli/src/polyfills.ts b/aio/tools/examples/shared/boilerplate/cli/src/polyfills.ts index 784b6da3e5..5efc9c9c5e 100644 --- a/aio/tools/examples/shared/boilerplate/cli/src/polyfills.ts +++ b/aio/tools/examples/shared/boilerplate/cli/src/polyfills.ts @@ -45,6 +45,12 @@ // import 'classlist.js'; // Run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ +/** + * DO NOT REMOVE + * By default, Reflect polyfills are auto-included by the CLI and + * are required for JIT compilation. StackBlitz examples are + * compiled using JIT. + */ import 'core-js/es6/reflect'; import 'core-js/es7/reflect';