1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-06 11:43:51 +00:00

fix(billing): Fix NX error

This should compile just the library files and not its dependency files which was making it error
This commit is contained in:
Stephon Brown
2025-09-29 13:40:39 -04:00
parent 5cfbc413af
commit 6d757b04a4
2 changed files with 8 additions and 19 deletions

View File

@@ -1,18 +1,15 @@
{
"name": "pricing",
"name": "@bitwarden/pricing",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/pricing/src",
"projectType": "library",
"tags": [],
"tags": ["scope:pricing", "type:lib"],
"targets": {
"build": {
"executor": "@nx/js:tsc",
"outputs": ["{options.outputPath}"],
"executor": "nx:run-script",
"dependsOn": [],
"options": {
"outputPath": "dist/libs/pricing",
"main": "libs/pricing/src/index.ts",
"tsConfig": "libs/pricing/tsconfig.lib.json",
"assets": ["libs/pricing/*.md"]
"script": "build"
}
},
"lint": {

View File

@@ -1,13 +1,5 @@
{
"extends": "../../tsconfig.base.json",
"files": [],
"include": [],
"references": [
{
"path": "./tsconfig.lib.json"
},
{
"path": "./tsconfig.spec.json"
}
]
"extends": "../../tsconfig.base",
"include": ["src"],
"exclude": ["node_modules", "dist"]
}