mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
* optimise lint targets * fix eslint config files * fix app coverage settings * tune eslint to warn about optional chains
25 lines
622 B
JSON
25 lines
622 B
JSON
{
|
|
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
|
|
"name": "authentication-e2e",
|
|
"sourceRoot": "e2e/playwright/authentication/src",
|
|
"projectType": "application",
|
|
"targets": {
|
|
"e2e": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"commands": [
|
|
"npx playwright test --config=e2e/playwright/authentication/playwright.config.ts"
|
|
]
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"devServerTarget": "content-ce:serve:production"
|
|
}
|
|
}
|
|
},
|
|
"lint": {
|
|
"executor": "@angular-eslint/builder:lint"
|
|
}
|
|
}
|
|
}
|