mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-28 02:58:04 +08:00
Previously "ng new" was generating angular.json file containing redundant whitespace after "version" property. When file was edited some IDEs automatically removed this whitespace making additional change in diff. If "packageManager" option is used, whitespace is still present.
10 lines
245 B
Plaintext
10 lines
245 B
Plaintext
{
|
|
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
|
"version": 1,<% if (packageManager) { %>
|
|
"cli": {
|
|
"packageManager": "<%= packageManager %>"
|
|
},<% } %>
|
|
"newProjectRoot": "<%= newProjectRoot %>",
|
|
"projects": {}
|
|
}
|