nx/nx-dev/nx-dev-e2e/project.json
Jason Jean 0772cb3642
Revert "chore(repo): update nx to 12.8.0-beta.1 (#6804)" (#6831)
This reverts commit 8e8191f22c7bce330c2c314f37bdf57c71cabadb.
2021-08-24 01:48:50 +00:00

29 lines
739 B
JSON

{
"root": "nx-dev/nx-dev-e2e",
"sourceRoot": "nx-dev/nx-dev-e2e/src",
"projectType": "application",
"targets": {
"e2e-disabled": {
"executor": "@nrwl/cypress:cypress",
"options": {
"cypressConfig": "nx-dev/nx-dev-e2e/cypress.json",
"tsConfig": "nx-dev/nx-dev-e2e/tsconfig.e2e.json",
"devServerTarget": "nx-dev:serve"
},
"configurations": {
"production": {
"devServerTarget": "nx-dev:serve:production"
}
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": ["nx-dev/nx-dev-e2e/**/*.{js,ts}"]
}
}
},
"tags": ["scope:nx-dev", "type:e2e"],
"implicitDependencies": ["nx-dev"]
}