-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy path.angular-cli.json
40 lines (40 loc) · 1.16 KB
/
.angular-cli.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"project": {
"name": "demo-app"
},
"apps": [
{
"root": "src/demo-app",
"outDir": "dist/demo-app",
"assets": [
"assets",
{ "glob": "**/*.*", "input": "../../assets/fonts", "output": "./assets/fonts" },
{ "glob": "_stratio_fonticon.scss", "input": "../theme/vendors/fonts", "output": "./assets/icons.scss" },
{ "glob": "_colors.scss", "input": "../theme/constants", "output": "./assets/colors.scss" },
{ "glob": "CHANGELOG.md", "input": "../../", "output": "./assets" }
],
"index": "index.html",
"main": "main.ts",
"polyfills": "polyfills.ts",
"tsconfig": "tsconfig-build.json",
"prefix": "",
"styles": [
"styles.scss"
],
"scripts": [],
"environmentSource": "environments/environment.ts",
"environments": {
"dev": "environments/environment.ts",
"prod": "environments/environment.prod.ts"
}
}
],
"defaults": {
"styleExt": "scss",
"component": {},
"serve": {
"port": 9501
}
}
}