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

31 lines
707 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/linter:eslint",
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",
"passWithNoTests": true
},
"configurations": {
"ci": {
"ci": true,
"codeCoverage": true
}
2022-11-04 10:47:39 +00:00
}
}
},
"tags": []
}