forked from ngxs/store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.angular-cli.json
51 lines (51 loc) · 1.32 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
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"project": {
"name": "ngxs"
},
"apps": [
{
"name": "ngxs",
"root": "./",
"appRoot": "packages",
"index": "integration/index.html",
"main": "integration/main.ts",
"polyfills": "integration/polyfills.ts",
"tsconfig": "tsconfig.app.json",
"test": "test.ts",
"testTsconfig": "tsconfig.spec.json"
},
{
"name": "integration",
"root": "",
"outDir": "dist-integration/",
"test": "integration/test.integration.ts",
"index": "integration/index.html",
"main": "integration/main.ts",
"polyfills": "integration/polyfills.ts",
"tsconfig": "integration/tsconfig.app.integration.json",
"testTsconfig": "integration/tsconfig.spec.integration.json",
"environmentSource": "integration/environments/environment.ts",
"environments": {
"dev": "integration/environments/environment.ts",
"prod": "integration/environments/environment.prod.ts"
}
}
],
"lint": [
{
"project": "tsconfig.app.json",
"exclude": "**/node_modules/**"
},
{
"project": "tsconfig.spec.json",
"exclude": "**/node_modules/**"
}
],
"test": {
"karma": {
"config": "./karma.conf.js"
}
},
"defaults": {}
}