-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.angular-cli.json
More file actions
59 lines (59 loc) · 1.29 KB
/
.angular-cli.json
File metadata and controls
59 lines (59 loc) · 1.29 KB
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
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"project": {
"name": "mg-pj"
},
"apps": [
{
"root": "src",
"outDir": "dist.dev",
"assets": [
"assets",
"favicon.ico",
"img",
"fonts",
"i18n"
],
"index": "index.html",
"main": "main.ts",
"polyfills": "./app/polyfills.ts",
"tsconfig": "tsconfig.app.json",
"testTsconfig": "tsconfig.spec.json",
"prefix": "app",
"styles": [
"./styles.css"
],
"scripts": [
"../node_modules/auth0-js/build/auth0.min.js",
"../node_modules/jquery/dist/jquery.min.js",
"../node_modules/hammerjs/hammer.min.js"
],
"environmentSource": "environments/environment.ts",
"environments": {
"dev": "environments/environment.ts",
"prod": "environments/environment.prod.ts"
}
}
],
"e2e": {
"protractor": {
"config": "test/e2e/ui_test/protractor_conf_chrome/protractor.conf.js"
}
},
"lint": [
{
"files": "client/**/*.ts",
"project": "./tsconfig.json",
"exclude": "**/node_modules/**/*"
}
],
"test": {
"karma": {
"config": "test/karma.conf.js"
}
},
"defaults": {
"styleExt": "css",
"component": {}
}
}