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.
23 lines
567 B
23 lines
567 B
2 years ago
|
{
|
||
|
"name": "auth-e2e",
|
||
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
||
|
"implicitDependencies": ["auth"],
|
||
|
"targets": {
|
||
|
"e2e": {
|
||
|
"executor": "@nx/jest:jest",
|
||
|
"outputs": ["{workspaceRoot}/coverage/{e2eProjectRoot}"],
|
||
|
"options": {
|
||
|
"jestConfig": "apps/auth-e2e/jest.config.ts",
|
||
|
"passWithNoTests": true
|
||
|
}
|
||
|
},
|
||
|
"lint": {
|
||
|
"executor": "@nx/linter:eslint",
|
||
|
"outputs": ["{options.outputFile}"],
|
||
|
"options": {
|
||
|
"lintFilePatterns": ["apps/auth-e2e/**/*.{js,ts}"]
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|