vega-frontend-monorepo/libs/smart-contracts/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

30 lines
769 B
JSON

{
"name": "smart-contracts",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/smart-contracts/src",
"targets": {
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/smart-contracts/**/*.ts"]
}
},
"test": {
"executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage/libs/smart-contracts"],
"options": {
"jestConfig": "libs/smart-contracts/jest.config.ts"
}
},
"build-spec": {
"executor": "nx:run-commands",
"outputs": [],
"options": {
"command": "yarn tsc --project ./libs/smart-contracts/tsconfig.spec.json"
}
}
},
"tags": []
}