Files
angular-challenges/libs/shared/utils/project.json
2023-05-22 22:06:48 +02:00

29 lines
717 B
JSON

{
"name": "shared-utils",
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
"projectType": "library",
"sourceRoot": "libs/shared/utils/src",
"prefix": "angular-challenges",
"targets": {
"test": {
"executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
"options": {
"jestConfig": "libs/shared/utils/jest.config.ts",
"passWithNoTests": true
}
},
"lint": {
"executor": "@nx/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": [
"libs/shared/utils/**/*.ts",
"libs/shared/utils/**/*.html"
]
}
}
},
"tags": []
}