You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
706 B
31 lines
706 B
2 years ago
|
{
|
||
|
"name": "ui",
|
||
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
||
|
"sourceRoot": "libs/ui/src",
|
||
|
"projectType": "library",
|
||
|
"tags": [],
|
||
|
"targets": {
|
||
|
"lint": {
|
||
|
"executor": "@nx/linter:eslint",
|
||
|
"outputs": ["{options.outputFile}"],
|
||
|
"options": {
|
||
|
"lintFilePatterns": ["libs/ui/**/*.{ts,tsx,js,jsx}"]
|
||
|
}
|
||
|
},
|
||
|
"test": {
|
||
|
"executor": "@nx/jest:jest",
|
||
|
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
|
||
|
"options": {
|
||
|
"jestConfig": "libs/ui/jest.config.ts",
|
||
|
"passWithNoTests": true
|
||
|
},
|
||
|
"configurations": {
|
||
|
"ci": {
|
||
|
"ci": true,
|
||
|
"codeCoverage": true
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|