-
-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathproject.json
More file actions
33 lines (33 loc) · 718 Bytes
/
project.json
File metadata and controls
33 lines (33 loc) · 718 Bytes
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
{
"name": "turbo-lint",
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "javascript/packages/turbo-lint/src",
"projectType": "library",
"targets": {
"build": {
"executor": "nx:run-script",
"options": {
"script": "build"
},
"dependsOn": [
"@herb-tools/core:build",
"@herb-tools/node-wasm:build",
"@herb-tools/linter:build",
"@herb-tools/highlighter:build"
]
},
"test": {
"executor": "nx:run-script",
"options": {
"script": "test"
}
},
"clean": {
"executor": "nx:run-script",
"options": {
"script": "clean"
}
}
},
"tags": []
}