diff --git a/docs/documentation/stories/1.0-update.md b/docs/documentation/stories/1.0-update.md index e0639504c7c3..849a83734ac2 100644 --- a/docs/documentation/stories/1.0-update.md +++ b/docs/documentation/stories/1.0-update.md @@ -296,7 +296,7 @@ Then update `protractor.conf.js` to use the e2e config as well: ``` beforeLaunch: function() { require('ts-node').register({ - project: 'e2e' + project: 'e2e/tsconfig.e2e.json' }); }, ``` @@ -444,7 +444,7 @@ Update `beforeLaunch` as described in [One tsconfig per app](#one-tsconfig-per-a ``` beforeLaunch: function() { require('ts-node').register({ - project: 'e2e' + project: 'e2e/tsconfig.e2e.json' }); }, ```