-
Notifications
You must be signed in to change notification settings - Fork 236
/
Copy pathproject.json
37 lines (37 loc) · 870 Bytes
/
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
{
"name": "gi-frontend",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/gi-frontend",
"projectType": "application",
"tags": [],
"targets": {
"dev": {
"options": {
"assets": [
{
"input": "libs/gi/localization/assets",
"glob": "**/*",
"output": ""
},
{
"input": "libs/gi/dm-localization/assets",
"glob": "**/*",
"output": ""
},
{
"input": "libs/gi/silly-wisher-names/assets",
"glob": "**/*",
"output": ""
}
]
}
},
"test": {
"executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
"options": {
"jestConfig": "apps/gi-frontend/jest.config.ts"
}
}
}
}