nx/nx-dev/ui-common/project.json
2022-05-04 15:27:43 +00:00

23 lines
553 B
JSON

{
"sourceRoot": "nx-dev/ui-common/src",
"projectType": "library",
"targets": {
"lint": {
"executor": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": ["nx-dev/ui-common/**/*.{ts,tsx,js,jsx}"]
},
"outputs": ["{options.outputFile}"]
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["coverage/nx-dev/ui-common"],
"options": {
"jestConfig": "nx-dev/ui-common/jest.config.ts",
"passWithNoTests": true
}
}
},
"tags": ["scope:nx-dev", "type:ui"]
}