-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathnx.json
More file actions
43 lines (43 loc) · 1.1 KB
/
nx.json
File metadata and controls
43 lines (43 loc) · 1.1 KB
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
{
"namedInputs": {
"shared": ["{workspaceRoot}/yarn.lock", "{workspaceRoot}/package.json"],
"default": ["{projectRoot}/**/*", "!{projectRoot}/dist/**/*", "!{projectRoot}/_build/**/*", "shared"]
},
"extends": "nx/presets/npm.json",
"targetDefaults": {
"build": {
"dependsOn": ["^build"],
"cache": true
},
"test": {
"inputs": ["default", "^default", "{workspaceRoot}/jest.preset.js"],
"cache": true
},
"check": {
"cache": true
},
"@nx/jest:jest": {
"inputs": ["default", "^default", "{workspaceRoot}/jest.preset.js"],
"cache": true,
"options": {
"passWithNoTests": true
},
"configurations": {
"ci": {
"ci": true,
"codeCoverage": true
}
}
},
"@nx/eslint:lint": {
"cache": true,
"inputs": ["default", "{workspaceRoot}/.eslintrc.json", "{workspaceRoot}/tools/eslint-rules/**/*"]
}
},
"plugins": ["workspace-plugin"],
"useInferencePlugins": false,
"defaultBase": "main",
"release": {
"projects": ["dashboard", "settings-form", "api"]
}
}