diff --git a/aio/tools/examples/shared/boilerplate/systemjs/package.json b/aio/tools/examples/shared/boilerplate/systemjs/package.json index bf2a0c151d..7ee551df19 100644 --- a/aio/tools/examples/shared/boilerplate/systemjs/package.json +++ b/aio/tools/examples/shared/boilerplate/systemjs/package.json @@ -10,6 +10,7 @@ "serve:e2e": "lite-server -c=bs-config.e2e.json", "prestart": "npm run build", "start": "concurrently \"npm run build:watch\" \"npm run serve\"", + "pree2e": "webdriver-manager update", "e2e": "concurrently \"npm run serve:e2e\" \"npm run protractor\" --kill-others --success first", "protractor": "protractor protractor.config.js --specs=e2e-spec.ts", "pretest": "npm run build", diff --git a/aio/tools/examples/shared/boilerplate/systemjs/tsconfig.json b/aio/tools/examples/shared/boilerplate/systemjs/tsconfig.json index d5ca9c47b3..ea3446bdab 100644 --- a/aio/tools/examples/shared/boilerplate/systemjs/tsconfig.json +++ b/aio/tools/examples/shared/boilerplate/systemjs/tsconfig.json @@ -14,8 +14,8 @@ }, "compileOnSave": true, "exclude": [ - "node_modules/*", "**/*-aot.ts", - "universal/*" + "node_modules/", + "universal/" ] }