-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.json
50 lines (50 loc) · 1.1 KB
/
project.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
{
"name": "ag-website-shared",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "library",
"sourceRoot": "{projectRoot}/src",
"targets": {
"lint": {
"command": "eslint",
"options": {
"cwd": "{projectRoot}"
}
},
"test": {
"executor": "nx:noop",
"dependsOn": ["test:vitest"],
"inputs": [],
"outputs": [],
"options": {
"cwd": "{projectRoot}"
},
"configurations": {
"ci": {},
"watch": {},
"update": {}
}
},
"test:vitest": {
"executor": "@nx/vite:test",
"outputs": ["{workspaceRoot}/reports/ag-website-shared.xml"],
"dependsOn": [],
"options": {
"cwd": "{projectRoot}",
"config": "{projectRoot}/vitest.config.mjs"
},
"configurations": {
"ci": {
"outputFile": "../../reports/ag-website-shared.xml",
"reporters": ["junit"]
},
"watch": {
"watch": true
},
"update": {
"update": true
}
}
}
},
"tags": ["website"]
}