2022-04-04 17:20:33 +00:00
|
|
|
{
|
2022-08-31 04:35:46 +00:00
|
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
2022-04-04 17:20:33 +00:00
|
|
|
"sourceRoot": "libs/cypress/src",
|
|
|
|
"projectType": "library",
|
|
|
|
"targets": {
|
|
|
|
"lint": {
|
|
|
|
"executor": "@nrwl/linter:eslint",
|
|
|
|
"outputs": ["{options.outputFile}"],
|
|
|
|
"options": {
|
|
|
|
"lintFilePatterns": ["libs/cypress/**/*.ts"]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"test": {
|
|
|
|
"executor": "@nrwl/jest:jest",
|
|
|
|
"outputs": ["coverage/libs/cypress"],
|
|
|
|
"options": {
|
2022-08-31 04:35:46 +00:00
|
|
|
"jestConfig": "libs/cypress/jest.config.ts",
|
2022-04-04 17:20:33 +00:00
|
|
|
"passWithNoTests": true
|
|
|
|
}
|
2022-10-25 07:41:16 +00:00
|
|
|
},
|
|
|
|
"build-spec": {
|
|
|
|
"executor": "@nrwl/workspace:run-commands",
|
|
|
|
"outputs": [],
|
|
|
|
"options": {
|
|
|
|
"command": "yarn tsc --project ./libs/cypress/tsconfig.spec.json"
|
|
|
|
}
|
2022-04-04 17:20:33 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"tags": []
|
|
|
|
}
|