-
Notifications
You must be signed in to change notification settings - Fork 1
/
.angular-cli.json
148 lines (148 loc) · 5.12 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"project": {
"name": "angular-cli-library"
},
"apps": [
{
"name": "app1-browser",
"root": "src",
"outDir": "dist/app1-browser",
"assets": [
{ "glob": "**/*", "input": "app1/assets/", "output": "./assets/" },
{ "glob": "favicon.ico", "input": "app1/", "output": "./" },
{ "glob": "**/*", "input": "shared/assets", "output": "./assets/" }
],
"index": "app1/index.html",
"deployUrl": "./",
"platform": "browser",
"main": "app1/main.ts",
"polyfills": "shared/other/polyfills.ts",
"test": "app1.test.ts",
"tsconfig": "tsconfig.app1.json",
"testTsconfig": "tsconfig.spec.json",
"prefix": "app1",
"styles": [
"app1/styles.scss",
"shared/other/styles.scss"
],
"scripts": [],
"environmentSource": "app1/environments/environment.ts",
"environments": {
"dev": "app1/environments/environment.ts",
"prod": "app1/environments/environment.prod.ts"
}
},{
"name": "app1-server",
"root": "src",
"outDir": "dist/app1-server",
"assets": [
{ "glob": "**/*", "input": "app1/assets/", "output": "./assets/" },
{ "glob": "favicon.ico", "input": "app1/", "output": "./" },
{ "glob": "**/*", "input": "shared/assets", "output": "./assets/" }
],
"index": "app1/index.html",
"deployUrl": "./",
"platform": "server",
"main": "app1/main.server.ts",
"test": "app1.test.ts",
"tsconfig": "tsconfig.app1.server.json",
"testTsconfig": "tsconfig.spec.json",
"prefix": "app1",
"styles": [
"app1/styles.scss",
"shared/other/styles.scss"
],
"scripts": [],
"environmentSource": "app1/environments/environment.ts",
"environments": {
"dev": "app1/environments/environment.ts",
"prod": "app1/environments/environment.prod.ts"
}
},
{
"name": "app2-browser",
"root": "src",
"outDir": "dist/app2-browser",
"assets": [
{ "glob": "**/*", "input": "app2/assets/", "output": "./assets/" },
{ "glob": "favicon.ico", "input": "app2/", "output": "./" },
{ "glob": "**/*", "input": "../node_modules/angular-cli-library/assets", "output": "./assets/" }
],
"index": "app2/index.html",
"deployUrl": "./",
"platform": "browser",
"main": "app2/main.ts",
"polyfills": "../node_modules/angular-cli-library/other/polyfills.ts",
"test": "app2.test.ts",
"tsconfig": "tsconfig.app2.json",
"testTsconfig": "tsconfig.spec.json",
"prefix": "app2",
"styles": [
"app2/styles.scss",
"../node_modules/angular-cli-library/other/styles.scss"
],
"scripts": [],
"environmentSource": "app2/environments/environment.ts",
"environments": {
"dev": "app2/environments/environment.ts",
"prod": "app2/environments/environment.prod.ts"
}
},{
"name": "app2-server",
"root": "src",
"outDir": "dist/app2-server",
"assets": [
{ "glob": "**/*", "input": "app2/assets/", "output": "./assets/" },
{ "glob": "favicon.ico", "input": "app2/", "output": "./" },
{ "glob": "**/*", "input": "../node_modules/angular-cli-library/assets", "output": "./assets/" }
],
"index": "app2/index.html",
"deployUrl": "./",
"platform": "server",
"main": "app2/main.server.ts",
"test": "app2.test.ts",
"tsconfig": "tsconfig.app2.server.json",
"testTsconfig": "tsconfig.spec.json",
"prefix": "app2",
"styles": [
"app2/styles.scss",
"../node_modules/angular-cli-library/other/styles.scss"
],
"scripts": [],
"environmentSource": "app2/environments/environment.ts",
"environments": {
"dev": "app2/environments/environment.ts",
"prod": "app2/environments/environment.prod.ts"
}
}
],
"e2e": {
"protractor": {
"config": "./protractor.conf.js"
}
},
"lint": [
{
"project": "src/tsconfig.app.json",
"exclude": "**/node_modules/**"
},
{
"project": "src/tsconfig.spec.json",
"exclude": "**/node_modules/**"
},
{
"project": "e2e/tsconfig.e2e.json",
"exclude": "**/node_modules/**"
}
],
"test": {
"karma": {
"config": "./karma.conf.js"
}
},
"defaults": {
"styleExt": "css",
"component": {}
}
}