Files
angular-challenges/apps/projection-e2e/project.json
2022-11-03 15:14:07 +01:00

31 lines
816 B
JSON

{
"name": "projection-e2e",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/projection-e2e/src",
"projectType": "application",
"targets": {
"e2e": {
"executor": "@nrwl/cypress:cypress",
"options": {
"cypressConfig": "apps/projection-e2e/cypress.config.ts",
"devServerTarget": "projection:serve:development",
"testingType": "e2e"
},
"configurations": {
"production": {
"devServerTarget": "projection:serve:production"
}
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["apps/projection-e2e/**/*.{js,ts}"]
}
}
},
"tags": [],
"implicitDependencies": ["projection"]
}