-
Notifications
You must be signed in to change notification settings - Fork 2
/
project.json
39 lines (39 loc) · 1.21 KB
/
project.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/govrn-contract-client/src",
"targets": {
"build": {
"executor": "@nrwl/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/libs/govrn-contract-client",
"main": "libs/govrn-contract-client/src/index.ts",
"tsConfig": "libs/govrn-contract-client/tsconfig.lib.json",
"assets": ["libs/govrn-contract-client/*.md"]
}
},
"typechain": {
"executor": "@nrwl/workspace:run-commands",
"options": {
"command": "typechain --target ethers-v5 --out-dir ./libs/govrn-contract-client/src/lib/generated ./apps/govrn-contract/out/Govrn.sol/*.json"
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/govrn-contract-client/**/*.ts"],
"maxWarnings": 0
}
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["coverage/libs/govrn-contract-client"],
"options": {
"jestConfig": "libs/govrn-contract-client/jest.config.ts",
"passWithNoTests": true
}
}
},
"tags": []
}