-
Notifications
You must be signed in to change notification settings - Fork 0
/
nx.json
59 lines (59 loc) · 1.22 KB
/
nx.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
{
"projects": {
"@internal/client": {
"tags": []
},
"@internal/server": {
"tags": []
},
"@internal/env": {
"tags": []
},
"@internal/storage": {
"tags": []
},
"@internal/database": {
"tags": []
}
},
"targetDefaults": {
"lint": {
"executor": "nx:run-commands",
"options": {
"command": "eslint {projectRoot}/src"
}
},
"build": {
"executor": "nx:run-commands",
"dependsOn": ["^build"],
"outputs": ["{projectRoot}/dist"],
"inputs": ["{projectRoot}/**/*", "!{projectRoot}/dist/**/*"],
"options": {
"cwd": "{projectRoot}",
"command": "tsc -p tsconfig.build.json"
}
},
"type-check": {
"executor": "nx:run-commands",
"dependsOn": ["^type-check"],
"options": {
"cwd": "{projectRoot}",
"command": "tsc --noEmit"
}
},
"test": {
"executor": "nx:run-commands",
"options": {
"cwd": "{projectRoot}",
"command": "vitest run"
}
},
"dev": {
"executor": "nx:run-commands",
"options": {
"cwd": "{projectRoot}",
"command": "tsc --watch -p tsconfig.build.json"
}
}
}
}