diff --git a/libs/key-management-ui/project.json b/libs/key-management-ui/project.json new file mode 100644 index 0000000000..2e311d209d --- /dev/null +++ b/libs/key-management-ui/project.json @@ -0,0 +1,41 @@ +{ + "name": "@bitwarden/key-management-ui", + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "sourceRoot": "libs/key-management-ui/src", + "projectType": "library", + "tags": ["scope:key-management-ui", "type:lib"], + "targets": { + "build": { + "executor": "nx:run-script", + "dependsOn": [], + "options": { + "script": "build" + } + }, + "build:watch": { + "executor": "nx:run-script", + "options": { + "script": "build:watch" + } + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + } + }, + "lint": { + "executor": "@nx/eslint:lint", + "outputs": ["{options.outputFile}"], + "options": { + "lintFilePatterns": ["libs/key-management-ui/**/*.ts"] + } + }, + "test": { + "executor": "nx:run-script", + "options": { + "script": "test" + } + } + } +}