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