2 changed files with 42 additions and 0 deletions
@ -0,0 +1,41 @@
@@ -0,0 +1,41 @@
|
||||
{ |
||||
"name": "@bitwarden/importer", |
||||
"$schema": "../../node_modules/nx/schemas/project-schema.json", |
||||
"sourceRoot": "libs/importer/src", |
||||
"projectType": "library", |
||||
"tags": ["scope:importer", "type:lib"], |
||||
"targets": { |
||||
"build": { |
||||
"executor": "nx:run-script", |
||||
"dependsOn": [], |
||||
"options": { |
||||
"script": "build" |
||||
} |
||||
}, |
||||
"build:watch": { |
||||
"executor": "nx:run-script", |
||||
"options": { |
||||
"script": "build:watch" |
||||
} |
||||
}, |
||||
"clean": { |
||||
"executor": "nx:run-script", |
||||
"options": { |
||||
"script": "clean" |
||||
} |
||||
}, |
||||
"lint": { |
||||
"executor": "@nx/eslint:lint", |
||||
"outputs": ["{options.outputFile}"], |
||||
"options": { |
||||
"lintFilePatterns": ["libs/importer/**/*.ts"] |
||||
} |
||||
}, |
||||
"test": { |
||||
"executor": "nx:run-script", |
||||
"options": { |
||||
"script": "test" |
||||
} |
||||
} |
||||
} |
||||
} |
||||
Loading…
Reference in new issue