Files
clients/libs/tools/generator/components/project.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
949 B
JSON
Raw Permalink Normal View History

{
"name": "@bitwarden/generator-components",
"$schema": "../../../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/tools/generator/components/src",
"projectType": "library",
"tags": ["scope:generator-components", "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/tools/generator/components/**/*.ts"]
}
},
"test": {
"executor": "nx:run-script",
"options": {
"script": "test"
}
}
}
}