-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.json
More file actions
30 lines (30 loc) · 866 Bytes
/
project.json
File metadata and controls
30 lines (30 loc) · 866 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
{
"name": "winbox-example-app-e2e",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/winbox-example-app-e2e/src",
"projectType": "application",
"tags": [],
"implicitDependencies": ["winbox-example-app"],
"targets": {
"e2e": {
"executor": "@nx/cypress:cypress",
"options": {
"cypressConfig": "apps/winbox-example-app-e2e/cypress.config.ts",
"devServerTarget": "winbox-example-app:serve:development",
"testingType": "e2e"
},
"configurations": {
"production": {
"devServerTarget": "winbox-example-app:serve:production"
}
}
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["apps/winbox-example-app-e2e/**/*.{js,ts}"]
}
}
}
}