-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathangular.json
53 lines (53 loc) · 1.48 KB
/
angular.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
{
"version": 1,
"projects": {
"angular-fixtures": {
"projectType": "library",
"root": "libs/angular-fixtures",
"sourceRoot": "libs/angular-fixtures/src",
"prefix": "angular-testing",
"architect": {
"build": {
"builder": "@nrwl/angular:package",
"options": {
"tsConfig": "libs/angular-fixtures/tsconfig.lib.json",
"project": "libs/angular-fixtures/ng-package.json"
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"libs/angular-fixtures/tsconfig.lib.json",
"libs/angular-fixtures/tsconfig.spec.json"
],
"exclude": ["**/node_modules/**", "!libs/angular-fixtures/**"]
}
},
"test": {
"builder": "@nrwl/jest:jest",
"options": {
"jestConfig": "libs/angular-fixtures/jest.config.js",
"tsConfig": "libs/angular-fixtures/tsconfig.spec.json",
"setupFile": "libs/angular-fixtures/src/test-setup.ts",
"passWithNoTests": true
}
}
},
"schematics": {}
}
},
"cli": {
"defaultCollection": "@nrwl/angular"
},
"schematics": {
"@nrwl/angular:application": {
"unitTestRunner": "jest",
"e2eTestRunner": "cypress"
},
"@nrwl/angular:library": {
"unitTestRunner": "jest"
}
},
"defaultProject": "angular-fixtures"
}