-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathworkspace.json
48 lines (48 loc) · 1.27 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
{
"version": 2,
"projects": {
"operators-debug": {
"root": "packages/operators/debug",
"sourceRoot": "packages/operators/debug/src",
"projectType": "library",
"targets": {
"lint": {
"executor": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": [
"packages/operators/debug/**/*.ts"
]
}
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": [
"coverage/packages/operators/debug"
],
"options": {
"jestConfig": "packages/operators/debug/jest.config.js",
"passWithNoTests": true
}
},
"build": {
"executor": "@nrwl/node:package",
"outputs": [
"{options.outputPath}"
],
"options": {
"outputPath": "dist/packages/operators/debug",
"tsConfig": "packages/operators/debug/tsconfig.lib.json",
"packageJson": "packages/operators/debug/package.json",
"main": "packages/operators/debug/src/index.ts",
"assets": [
"packages/operators/debug/*.md"
]
}
}
}
}
},
"cli": {
"defaultCollection": "@nrwl/workspace"
}
}