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

24 lines
593 B
JSON

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