nx/nx-dev/feature-conf/project.json
2021-08-05 14:06:04 -04:00

23 lines
560 B
JSON

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