mirror of
https://github.com/bitwarden/browser
synced 2026-02-08 04:33:38 +00:00
28 lines
722 B
JSON
28 lines
722 B
JSON
{
|
|
"name": "storage",
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "libs/storage/src",
|
|
"projectType": "library",
|
|
"tags": [],
|
|
"targets": {
|
|
"build": {
|
|
"executor": "@nx/js:tsc",
|
|
"outputs": ["{options.outputPath}"],
|
|
"options": {
|
|
"outputPath": "dist/libs/storage",
|
|
"main": "libs/storage/src/index.ts",
|
|
"tsConfig": "libs/storage/tsconfig.lib.json",
|
|
"assets": ["libs/storage/*.md"]
|
|
}
|
|
},
|
|
"test": {
|
|
"executor": "@nx/jest:jest",
|
|
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
|
|
"options": {
|
|
"jestConfig": "libs/storage/jest.config.js",
|
|
"passWithNoTests": true
|
|
}
|
|
}
|
|
}
|
|
}
|