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.
34 lines
832 B
34 lines
832 B
{
|
|
"name": "crud-e2e",
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"projectType": "application",
|
|
"sourceRoot": "apps/crud-e2e/src",
|
|
"targets": {
|
|
"e2e": {
|
|
"executor": "@nx/cypress:cypress",
|
|
"options": {
|
|
"cypressConfig": "apps/crud-e2e/cypress.config.ts",
|
|
"testingType": "e2e",
|
|
"devServerTarget": "crud:serve"
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"devServerTarget": "crud:serve:production"
|
|
},
|
|
"ci": {
|
|
"devServerTarget": "crud:serve-static"
|
|
}
|
|
}
|
|
},
|
|
"lint": {
|
|
"executor": "@nx/eslint:lint",
|
|
"outputs": ["{options.outputFile}"],
|
|
"options": {
|
|
"lintFilePatterns": ["apps/crud-e2e/**/*.{js,ts}"]
|
|
}
|
|
}
|
|
},
|
|
"implicitDependencies": ["crud"],
|
|
"tags": []
|
|
}
|