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:
@@ -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": {
|
||||
|
||||
@@ -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"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user