1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-05 03:03:26 +00:00
Files
browser/libs/pricing/project.json
Stephon Brown 6d757b04a4 fix(billing): Fix NX error
This should compile just the library files and not its dependency files which was making it error
2025-09-29 16:46:04 -04:00

31 lines
735 B
JSON

{
"name": "@bitwarden/pricing",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/pricing/src",
"projectType": "library",
"tags": ["scope:pricing", "type:lib"],
"targets": {
"build": {
"executor": "nx:run-script",
"dependsOn": [],
"options": {
"script": "build"
}
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/pricing/**/*.ts"]
}
},
"test": {
"executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
"options": {
"jestConfig": "libs/pricing/jest.config.js"
}
}
}
}