nx/nx-dev/ui-home/project.json
2021-11-12 11:59:45 -05:00

24 lines
574 B
JSON

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