December 2017
Beginner
372 pages
10h 32m
English
The Angular CLI maintains all its configurations in the .angular-cli.json file found in the root folder. All the configurations we defined in the previous section when creating trello-app will be stored here. Let's look at some of the configurations in this file.
We start with the project name, which in our case is trello-app; this was the name we gave when we ran the ng new command.
Then we have an array of apps in the JSON file, as shown in the following code:
"apps": [ { "root": "src", "outDir": "dist", "assets": [ "assets", "favicon.ico" ], "index": "index.html", "main": "main.ts", "polyfills": "polyfills.ts", "test": "test.ts", "tsconfig": "tsconfig.app.json", "testTsconfig": "tsconfig.spec.json", "prefix": "trello", ...Read now
Unlock full access