vega-frontend-monorepo/libs/ledger/project.json

24 lines
558 B
JSON
Raw Normal View History

2022-11-04 10:47:39 +00:00
{
"name": "ledger",
2022-11-04 10:47:39 +00:00
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/ledger/src",
"projectType": "library",
"targets": {
"lint": {
"executor": "@nx/eslint:lint",
2022-11-04 10:47:39 +00:00
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/ledger/**/*.ts"]
}
},
"test": {
"executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage/libs/ledger"],
2022-11-04 10:47:39 +00:00
"options": {
"jestConfig": "libs/ledger/jest.config.ts"
2022-11-04 10:47:39 +00:00
}
}
},
"tags": []
}