-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnx.json
More file actions
49 lines (49 loc) · 1.13 KB
/
Copy pathnx.json
File metadata and controls
49 lines (49 loc) · 1.13 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
44
45
46
47
48
49
{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"namedInputs": {
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"sharedGlobals": [
"{workspaceRoot}/pnpm-lock.yaml",
"{workspaceRoot}/tsconfig.base.json",
"{workspaceRoot}/tsconfig.base.composite.json",
"{workspaceRoot}/types/**/*"
]
},
"targetDefaults": {
"typecheck": {
"cache": true,
"inputs": ["default", "^default"],
"outputs": []
},
"lint": {
"cache": true,
"inputs": [
"default",
"^default",
"{workspaceRoot}/eslint.config.mjs",
"{workspaceRoot}/prettier.config.mjs"
],
"outputs": []
},
"test:unit:ci": {
"cache": true,
"inputs": [
"default",
"^default",
"{workspaceRoot}/vitest.config.ts",
"{workspaceRoot}/vitest.shims.d.ts"
],
"outputs": []
},
"stylelint": {
"cache": true,
"inputs": ["default", "{workspaceRoot}/stylelint.config.mjs"],
"outputs": []
},
"circular-deps": {
"cache": true,
"inputs": ["default"],
"outputs": []
}
}
}