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.
nx-guitar-school/apps/website-e2e/project.json

31 lines
795 B

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