1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-24 08:33:29 +00:00
Files
browser/libs/user-crypto-management/project.json
Bernd Schoolmann bb110122a5 [PM-30144] Implement client-side user-key-rotation-service (#18285)
* Implement client-side user-key-rotation-service

* Feature flag

* Add tests

* Fix flag name

* Fix build

* Prettier

* Small clean-up

* Codeowners order cleanup

* Fix eslint issue

* Update sdk to 550

* Cleanup & fix incompatibilities

* Prettier
2026-02-20 15:28:24 +01:00

35 lines
1.0 KiB
JSON

{
"name": "user-crypto-management",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/user-crypto-management/src",
"projectType": "library",
"tags": [],
"targets": {
"build": {
"executor": "@nx/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/libs/user-crypto-management",
"main": "libs/user-crypto-management/src/index.ts",
"tsConfig": "libs/user-crypto-management/tsconfig.lib.json",
"assets": ["libs/user-crypto-management/*.md"],
"rootDir": "libs/user-crypto-management/src"
}
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/user-crypto-management/**/*.ts"]
}
},
"test": {
"executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
"options": {
"jestConfig": "libs/user-crypto-management/jest.config.js"
}
}
}
}