-
Notifications
You must be signed in to change notification settings - Fork 43
/
angular.json
194 lines (194 loc) · 6.03 KB
/
angular.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"blocknet": {
"root": "",
"sourceRoot": "src",
"projectType": "application",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist",
"index": "src/index.html",
"main": "src/main.ts",
"tsConfig": "src/tsconfig.app.json",
"polyfills": "src/polyfills.ts",
"assets": [
"src/amcharts",
"src/assets",
"src/favicon.ico",
"src/scripts",
"src/configuration.html",
"src/rpc-settings.html",
"src/tos.html",
"src/update-available.html",
"src/settings.html",
"src/unverified-asset.html",
"src/general-settings.html",
"src/order-details.html",
"src/information.html",
"src/release-notes.html",
"src/message-box.html"
],
"styles": [
"src/styles/main.scss",
"src/amcharts/plugins/export/export.css"
],
"scripts": [
"node_modules/jquery/dist/jquery.min.js",
"src/assets/charting_library/charting_library.min.js",
"src/assets/charting_library/datafeed/udf/datafeed.js",
"src/amcharts/amcharts.js",
"src/amcharts/serial.js",
"src/amcharts/plugins/dataloader/dataloader.min.js",
"src/amcharts/plugins/export/export.min.js",
"src/amcharts/themes/dark.js",
"src/amcharts/plugins/responsive/responsive.min.js",
"src/scripts/main.js"
],
"allowedCommonJsDependencies": [
"mathjs",
"rxjs",
"typed-function",
"seed-random",
"javascript-natural-sort",
"complex.js",
"tiny-emitter",
"escape-latex",
"lodash/isBoolean"
]
},
"configurations": {
"mock": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.mock.ts"
}
]
},
"production": {
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}
]
}
}
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "blocknet:build"
},
"configurations": {
"mock": {
"browserTarget": "blocknet:build:mock"
},
"production": {
"browserTarget": "blocknet:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "blocknet:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "src/test.ts",
"karmaConfig": "./karma.conf.js",
"polyfills": "src/polyfills.ts",
"tsConfig": "src/tsconfig.spec.json",
"scripts": [
"node_modules/jquery/dist/jquery.min.js",
"src/assets/charting_library/charting_library.min.js",
"src/assets/charting_library/datafeed/udf/datafeed.js",
"src/amcharts/amcharts.js",
"src/amcharts/serial.js",
"src/amcharts/plugins/dataloader/dataloader.min.js",
"src/amcharts/plugins/export/export.min.js",
"src/amcharts/themes/dark.js",
"src/amcharts/plugins/responsive/responsive.min.js",
"src/scripts/main.js"
],
"styles": [
"src/styles/main.scss",
"src/amcharts/plugins/export/export.css"
],
"assets": [
"src/amcharts",
"src/assets",
"src/favicon.ico",
"src/scripts",
"src/configuration.html",
"src/rpc-settings.html",
"src/tos.html",
"src/update-available.html",
"src/settings.html",
"src/order-details.html",
"src/information.html"
]
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"src/tsconfig.app.json",
"src/tsconfig.spec.json"
],
"exclude": []
}
}
}
},
"blocknet-e2e": {
"root": "e2e",
"sourceRoot": "e2e",
"projectType": "application",
"architect": {
"e2e": {
"builder": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "./protractor.conf.js",
"devServerTarget": "blocknet:serve"
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"e2e/tsconfig.e2e.json"
],
"exclude": []
}
}
}
}
},
"schematics": {
"@schematics/angular:component": {
"prefix": "bn",
"style": "scss"
},
"@schematics/angular:directive": {
"prefix": "bn"
}
}
}