-
Notifications
You must be signed in to change notification settings - Fork 0
/
angular.json
41 lines (41 loc) · 1.02 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
{
"version": 1,
"projects": {
"auth": {
"projectType": "library",
"root": "",
"sourceRoot": "./src",
"prefix": "ngsm",
"architect": {
"build": {
"builder": "@angular-devkit/build-ng-packagr:build",
"options": {
"tsConfig": "./tsconfig.lib.json",
"project": "./ng-package.json"
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"./tsconfig.lib.json",
"./tsconfig.spec.json"
],
"exclude": ["**/node_modules/**", "!./**"]
}
},
"test": {
"builder": "@nrwl/jest:jest",
"options": {
"jestConfig": "./jest.config.js",
"tsConfig": "./tsconfig.spec.json",
"setupFile": "./src/test-setup.ts",
"passWithNoTests": true,
"codeCoverage": true
}
}
}
}
},
"defaultProject": "auth"
}