nx/nx-dev/ui-references/project.json
2022-11-08 13:12:31 -05:00

25 lines
660 B
JSON

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