mirror of
https://github.com/bitwarden/browser
synced 2026-02-24 16:43:27 +00:00
Add unlock service
This commit is contained in:
34
libs/unlock/project.json
Normal file
34
libs/unlock/project.json
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"name": "unlock",
|
||||
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
||||
"sourceRoot": "libs/unlock/src",
|
||||
"projectType": "library",
|
||||
"tags": [],
|
||||
"targets": {
|
||||
"build": {
|
||||
"executor": "@nx/js:tsc",
|
||||
"outputs": ["{options.outputPath}"],
|
||||
"options": {
|
||||
"outputPath": "dist/libs/unlock",
|
||||
"main": "libs/unlock/src/index.ts",
|
||||
"tsConfig": "libs/unlock/tsconfig.lib.json",
|
||||
"assets": ["libs/unlock/*.md"],
|
||||
"rootDir": "libs/unlock/src"
|
||||
}
|
||||
},
|
||||
"lint": {
|
||||
"executor": "@nx/eslint:lint",
|
||||
"outputs": ["{options.outputFile}"],
|
||||
"options": {
|
||||
"lintFilePatterns": ["libs/unlock/**/*.ts"]
|
||||
}
|
||||
},
|
||||
"test": {
|
||||
"executor": "@nx/jest:jest",
|
||||
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
|
||||
"options": {
|
||||
"jestConfig": "libs/unlock/jest.config.js"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user