From 4537816c1de1a5ba7c2093e90087296150879a0b Mon Sep 17 00:00:00 2001 From: Alan Agius Date: Thu, 2 May 2019 15:59:03 +0200 Subject: [PATCH] docs: fix `targetEntryPointPath` description (#30237) PR Close #30237 --- packages/compiler-cli/ngcc/src/main.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/compiler-cli/ngcc/src/main.ts b/packages/compiler-cli/ngcc/src/main.ts index c69424fa91..0fc5f7b96d 100644 --- a/packages/compiler-cli/ngcc/src/main.ts +++ b/packages/compiler-cli/ngcc/src/main.ts @@ -31,7 +31,8 @@ export interface NgccOptions { /** The absolute path to the `node_modules` folder that contains the packages to process. */ basePath: string; /** - * The path, relative to `basePath` to the primary package to be processed. + * The path to the primary package to be processed. If not absolute then it must be relative to + * `basePath`. * * All its dependencies will need to be processed too. */