-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkspace.json
62 lines (62 loc) · 1.56 KB
/
workspace.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
54
55
56
57
58
59
60
61
62
{
"version": 2,
"cli": {
"defaultCollection": "@nrwl/angular"
},
"generators": {
"@nrwl/angular:application": {
"linter": "eslint",
"unitTestRunner": "jest",
"e2eTestRunner": "cypress"
},
"@nrwl/angular:library": {
"linter": "eslint",
"unitTestRunner": "jest"
},
"@nrwl/angular:component": {}
},
"projects": {
"bdir": {
"projectType": "library",
"root": "packages/bdir",
"sourceRoot": "packages/bdir/src",
"prefix": "e-square",
"targets": {
"build": {
"executor": "@nrwl/angular:package",
"outputs": ["dist/packages/bdir"],
"options": {
"project": "packages/bdir/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "packages/bdir/tsconfig.lib.prod.json"
},
"development": {
"tsConfig": "packages/bdir/tsconfig.lib.json"
}
},
"defaultConfiguration": "production"
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["coverage/packages/bdir"],
"options": {
"jestConfig": "packages/bdir/jest.config.js",
"passWithNoTests": true
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": [
"packages/bdir/src/**/*.ts",
"packages/bdir/src/**/*.html"
]
}
}
}
}
},
"defaultProject": "bdir"
}