Denys Vuika 9106608398
ESLint fixes and unified lint targets ()
* optimise lint targets

* fix eslint config files

* fix app coverage settings

* tune eslint to warn about optional chains
2023-09-08 09:00:00 +01:00

24 lines
569 B
JSON

{
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"name": "app-e2e",
"sourceRoot": "e2e",
"projectType": "application",
"targets": {
"e2e": {
"executor": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "./protractor.conf.js",
"devServerTarget": "content-ce:serve"
},
"configurations": {
"production": {
"devServerTarget": "content-ce:serve:production"
}
}
},
"lint": {
"executor": "@angular-eslint/builder:lint"
}
}
}