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