b3014bb98a
Co-authored-by: Edd <edd@vega.xyz>
31 lines
816 B
JSON
31 lines
816 B
JSON
{
|
|
"name": "funding-payments",
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "libs/funding-payments/src",
|
|
"projectType": "library",
|
|
"tags": [],
|
|
"targets": {
|
|
"lint": {
|
|
"executor": "@nx/eslint:lint",
|
|
"outputs": ["{options.outputFile}"],
|
|
"options": {
|
|
"lintFilePatterns": ["libs/funding-payments/**/*.{ts,tsx,js,jsx}"]
|
|
}
|
|
},
|
|
"test": {
|
|
"executor": "@nx/jest:jest",
|
|
"outputs": ["{workspaceRoot}/coverage/libs/funding-payments"],
|
|
"options": {
|
|
"jestConfig": "libs/funding-payments/jest.config.ts"
|
|
}
|
|
},
|
|
"build-spec": {
|
|
"executor": "nx:run-commands",
|
|
"outputs": [],
|
|
"options": {
|
|
"command": "yarn tsc --project ./libs/funding-payments/tsconfig.spec.json"
|
|
}
|
|
}
|
|
}
|
|
}
|