We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 962b028 commit 83d9c03Copy full SHA for 83d9c03
packages/@angular/cli/models/config.ts
@@ -32,7 +32,7 @@ export class CliConfig extends CliConfigBase<ConfigInterface> {
32
const projectConfig = CliConfig.fromProject();
33
if (projectConfig) {
34
value = projectConfig.get(jsonPath);
35
- } else {
+ } else if (CliConfig.globalConfigFilePath() !== CliConfig.configFilePath()) {
36
const globalConfig = CliConfig.fromGlobal();
37
if (globalConfig) {
38
value = globalConfig.get(jsonPath);
0 commit comments