forked from ArkEcosystem/mobile-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
angular-cli.json
65 lines (65 loc) · 1.28 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
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"project": {
"name": "osmose-mobile"
},
"apps": [
{
"root": "src",
"outDir": "../dist",
"assets": [
"assets"
],
"index": "index.html",
"main": "app/main.ts",
"polyfills": "polyfills.ts",
"test": "../test/helpers.ts",
"tsconfig": "../test/tsconfig.test.json",
"prefix": "app",
"scripts": [],
"showCircularDependencies": true
}
],
"e2e": {
"protractor": {
"config": "./e2e/protractor.conf.js"
}
},
"lint": [
{
"project": "tsconfig.app.json",
"exclude": "**/node_modules/**"
},
{
"project": "test/tsconfig.test.json",
"exclude": "**/node_modules/**"
},
{
"project": "e2e/tsconfig.e2e.json",
"exclude": "**/node_modules/**"
}
],
"test": {
"karma": {
"config": "test/karma.conf.js"
},
"codeCoverage": {
"exclude": [
"src/service-worker.js",
"src/polyfills.ts",
"test/helpers.ts",
"test/mocks.ts",
"**/*.mock.ts",
"**/node_modules/**"
]
}
},
"defaults": {
"styleExt": "css",
"component": {},
"build": {
"progress": false,
"sourcemaps": false
}
}
}