mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-22 20:51:29 +10:00
25 lines
628 B
JSON
25 lines
628 B
JSON
{
|
|
"name": "server-e2e",
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"projectType": "application",
|
|
"targets": {
|
|
"e2e": {
|
|
"executor": "@nx/jest:jest",
|
|
"outputs": ["{workspaceRoot}/coverage/{e2eProjectRoot}"],
|
|
"options": {
|
|
"jestConfig": "apps/server-e2e/jest.config.ts",
|
|
"passWithNoTests": true
|
|
}
|
|
},
|
|
"lint": {
|
|
"executor": "@nx/eslint:lint",
|
|
"outputs": ["{options.outputFile}"],
|
|
"options": {
|
|
"lintFilePatterns": ["apps/server-e2e/**/*.{js,ts}"]
|
|
}
|
|
}
|
|
},
|
|
"tags": ["backend"],
|
|
"implicitDependencies": ["server"]
|
|
}
|