1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-07 20:24:01 +00:00

other libs

This commit is contained in:
addisonbeck
2025-08-25 12:11:14 -04:00
parent 57b7218151
commit 9b0bc38459
20 changed files with 573 additions and 0 deletions

29
libs/angular/project.json Normal file
View File

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