31 lines
738 B
JSON
31 lines
738 B
JSON
|
{
|
||
|
"name": "tendermint",
|
||
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
||
|
"sourceRoot": "libs/tendermint/src",
|
||
|
"projectType": "library",
|
||
|
"tags": [],
|
||
|
"targets": {
|
||
|
"lint": {
|
||
|
"executor": "@nx/linter:eslint",
|
||
|
"outputs": ["{options.outputFile}"],
|
||
|
"options": {
|
||
|
"lintFilePatterns": ["libs/tendermint/**/*.{ts,tsx,js,jsx}"]
|
||
|
}
|
||
|
},
|
||
|
"test": {
|
||
|
"executor": "@nx/jest:jest",
|
||
|
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
|
||
|
"options": {
|
||
|
"jestConfig": "libs/tendermint/jest.config.ts",
|
||
|
"passWithNoTests": true
|
||
|
},
|
||
|
"configurations": {
|
||
|
"ci": {
|
||
|
"ci": true,
|
||
|
"codeCoverage": true
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|