nx/nx-dev/ui-community/project.json
2022-10-13 18:34:24 -04:00

24 lines
647 B
JSON

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