-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathangular.json
More file actions
136 lines (136 loc) 路 4 KB
/
Copy pathangular.json
File metadata and controls
136 lines (136 loc) 路 4 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
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
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"cli": {
"analytics": false,
"cache": {
"enabled": false,
"path": "./.cache/angular",
"environment": "all"
}
},
"newProjectRoot": "projects",
"projects": {
"testing-library": {
"projectType": "library",
"root": "projects/testing-library",
"sourceRoot": "projects/testing-library/src",
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular/build:ng-packagr",
"options": {
"project": "projects/testing-library/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/testing-library/tsconfig.lib.prod.json"
},
"development": {
"tsConfig": "projects/testing-library/tsconfig.lib.json"
}
},
"defaultConfiguration": "production"
},
"test-build-zoneless": {
"builder": "@angular/build:application",
"options": {
"polyfills": [],
"tsConfig": "projects/testing-library/tsconfig.spec.json"
}
},
"test": {
"builder": "@angular/build:unit-test",
"options": {
"buildTarget": "testing-library:test-build-zoneless",
"setupFiles": ["projects/testing-library/test-setup.ts"],
"include": ["**/*.spec.ts", "../zoneless/**/*.spec.ts", "../schematics/**/*.spec.ts"]
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": ["projects/testing-library/**/*.ts", "projects/testing-library/**/*.html"]
}
}
}
},
"example-app": {
"projectType": "application",
"root": "apps/example-app",
"sourceRoot": "apps/example-app/src",
"prefix": "app",
"architect": {
"test-build": {
"builder": "@angular/build:application",
"options": {
"polyfills": [],
"tsConfig": "apps/example-app/tsconfig.spec.json"
}
},
"test": {
"builder": "@angular/build:unit-test",
"options": {
"buildTarget": "example-app:test-build",
"setupFiles": ["apps/example-app/test-setup.ts"]
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": ["apps/example-app/**/*.ts", "apps/example-app/**/*.html"]
}
}
}
},
"example-app-jest": {
"projectType": "application",
"root": "apps/example-app-jest",
"sourceRoot": "apps/example-app-jest/src",
"prefix": "app",
"architect": {
"test": {
"builder": "@angular-builders/jest:run",
"options": {
"zoneless": false
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": ["apps/example-app-jest/**/*.ts", "apps/example-app-jest/**/*.html"]
}
}
}
},
"example-app-karma": {
"projectType": "application",
"root": "apps/example-app-karma",
"sourceRoot": "apps/example-app-karma/src",
"prefix": "app",
"architect": {
"test": {
"builder": "@angular/build:karma",
"options": {
"main": "apps/example-app-karma/src/test.ts",
"tsConfig": "apps/example-app-karma/tsconfig.spec.json",
"karmaConfig": "apps/example-app-karma/karma.conf.js"
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": ["apps/example-app-karma/**/*.ts", "apps/example-app-karma/**/*.html"]
}
}
}
}
},
"schematics": {
"@schematics/angular:component": {
"style": "scss",
"displayBlock": true,
"changeDetection": "OnPush"
}
}
}