Initial commit

This commit is contained in:
thomas
2022-11-03 15:14:07 +01:00
commit 8002a3f9ed
49 changed files with 33088 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
{
"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"]
}