vega-frontend-monorepo/libs/data-provider/project.json
Matthew Russell b3014bb98a
chore(trading,governance,explorer): nx migration to latest (#5246)
Co-authored-by: Edd <edd@vega.xyz>
2023-11-14 15:25:29 +01:00

24 lines
606 B
JSON

{
"name": "data-provider",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/data-provider/src",
"projectType": "library",
"tags": [],
"targets": {
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/data-provider/**/*.{ts,tsx,js,jsx}"]
}
},
"test": {
"executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage/libs/data-provider"],
"options": {
"jestConfig": "libs/data-provider/jest.config.ts"
}
}
}
}