You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kubsu-platform-crud-2023/apps/frontend-e2e/project.json

34 lines
878 B

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