1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-05 19:23:19 +00:00
Files
browser/libs/ui/common/project.json
addisonbeck 9b0bc38459 other libs
2025-09-09 06:43:47 -04:00

23 lines
525 B
JSON

{
"name": "@bitwarden/ui-common",
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/ui/common/src",
"projectType": "library",
"tags": ["scope:ui-common", "type:lib"],
"targets": {
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/ui/common/**/*.ts"]
}
},
"test": {
"executor": "nx:run-script",
"options": {
"script": "test"
}
}
}
}