nx/nx-dev/models-package/project.json
2022-04-23 18:06:01 +00:00

24 lines
597 B
JSON

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