-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.json
34 lines (34 loc) · 850 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
{
"name": "shared-frontend-environment",
"$schema": "../../../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/shared/frontend/environment/src",
"prefix": "rspd",
"tags": ["kind:frontend", "type:util", "domain:shared"],
"projectType": "library",
"targets": {
"test": {
"executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
"options": {
"jestConfig": "libs/shared/frontend/environment/jest.config.ts",
"passWithNoTests": true
},
"configurations": {
"ci": {
"ci": true,
"codeCoverage": true
}
}
},
"lint": {
"executor": "@nx/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": [
"libs/shared/frontend/environment/**/*.ts",
"libs/shared/frontend/environment/**/*.html"
]
}
}
}
}