forked from LoominusAI/ngx-hopscotch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.angular-cli.json
116 lines (116 loc) · 2.79 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
{
"$schema": "./node_modules/@nrwl/schematics/src/schema.json",
"project": {
"name": "ngx-hopscotch",
"npmScope": "ngx-hopscotch",
"latestMigration": "20180227-cleanup-scripts"
},
"e2e": {
"protractor": {
"config": "./protractor.conf.js"
}
},
"lint": [
{
"project": "./tsconfig.spec.json",
"exclude": "**/node_modules/**"
},
{
"project": "apps/demo/src/tsconfig.app.json",
"exclude": "**/node_modules/**"
},
{
"project": "apps/demo/e2e/tsconfig.e2e.json",
"exclude": "**/node_modules/**"
},
{
"project": "apps/demo-routing/src/tsconfig.app.json",
"exclude": "**/node_modules/**"
},
{
"project": "apps/demo-routing/e2e/tsconfig.e2e.json",
"exclude": "**/node_modules/**"
}
],
"test": {
"karma": {
"config": "./karma.conf.js"
}
},
"apps": [
{
"name": "demo",
"root": "apps/demo/src",
"outDir": "dist/apps/demo",
"assets": [
"assets",
"favicon.ico"
],
"index": "index.html",
"main": "main.ts",
"polyfills": "polyfills.ts",
"test": "../../../test.js",
"tsconfig": "tsconfig.app.json",
"testTsconfig": "../../../tsconfig.spec.json",
"prefix": "app",
"styles": [
"styles.css"
],
"scripts": [],
"environmentSource": "environments/environment.ts",
"environments": {
"dev": "environments/environment.ts",
"prod": "environments/environment.prod.ts"
}
},
{
"name": "demo-packaged",
"root": "apps/demo/src",
"outDir": "dist/apps/demo-packaged",
"assets": [
"assets",
"favicon.ico"
],
"index": "index.html",
"main": "main.ts",
"polyfills": "polyfills.ts",
"test": "../../../test.js",
"tsconfig": "tsconfig.packaged.json",
"testTsconfig": "../../../tsconfig.spec.json",
"prefix": "app",
"styles": [
"../../../node_modules/bootstrap/dist/css/bootstrap.css",
"../../../node_modules/font-awesome/css/font-awesome.css",
"../../../node_modules/hopscotch/dist/css/hopscotch.css",
"styles.css"
],
"scripts": [],
"environmentSource": "environments/environment.ts",
"environments": {
"dev": "environments/environment.ts",
"prod": "environments/environment.prod.ts"
}
},
{
"name": "ngx-hopscotch",
"root": "libs/ngx-hopscotch/src",
"test": "../../../test.js",
"appRoot": ""
},
{
"name": "$workspaceRoot",
"root": ".",
"appRoot": ""
}
],
"defaults": {
"schematics": {
"collection": "@nrwl/schematics"
},
"styleExt": "css",
"component": {}
},
"warnings": {
"typescriptMismatch": false
}
}