vega-frontend-monorepo/libs/deposits/project.json
2023-09-08 13:43:54 -07:00

38 lines
917 B
JSON

{
"name": "deposits",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/deposits/src",
"projectType": "library",
"tags": [],
"targets": {
"lint": {
"executor": "@nx/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/deposits/**/*.{ts,tsx,js,jsx}"]
}
},
"test": {
"executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage/libs/deposits"],
"options": {
"jestConfig": "libs/deposits/jest.config.ts",
"passWithNoTests": true
},
"configurations": {
"ci": {
"ci": true,
"codeCoverage": true
}
}
},
"build-spec": {
"executor": "nx:run-commands",
"outputs": [],
"options": {
"command": "yarn tsc --project ./libs/deposits/tsconfig.spec.json"
}
}
}
}