-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathworkspace.json
77 lines (77 loc) · 2.18 KB
/
workspace.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"version": 2,
"projects": {
"nx-hardhat": {
"root": "packages/nx-hardhat",
"sourceRoot": "packages/nx-hardhat/src",
"projectType": "library",
"targets": {
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["packages/nx-hardhat/**/*.ts"]
}
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["coverage/packages/nx-hardhat"],
"options": {
"jestConfig": "packages/nx-hardhat/jest.config.js",
"passWithNoTests": true
}
},
"build": {
"executor": "@nrwl/node:package",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/packages/nx-hardhat",
"tsConfig": "packages/nx-hardhat/tsconfig.lib.json",
"packageJson": "packages/nx-hardhat/package.json",
"main": "packages/nx-hardhat/src/index.ts",
"assets": [
"packages/nx-hardhat/*.md",
{
"input": "./packages/nx-hardhat/src",
"glob": "**/!(*.ts)",
"output": "./src"
},
{
"input": "./packages/nx-hardhat/src",
"glob": "**/*.d.ts",
"output": "./src"
},
{
"input": "./packages/nx-hardhat",
"glob": "generators.json",
"output": "."
},
{
"input": "./packages/nx-hardhat",
"glob": "executors.json",
"output": "."
}
]
}
}
}
},
"nx-hardhat-e2e": {
"root": "e2e/nx-hardhat-e2e",
"projectType": "application",
"sourceRoot": "e2e/nx-hardhat-e2e/src",
"targets": {
"e2e": {
"executor": "@nrwl/nx-plugin:e2e",
"options": {
"target": "hardhat:build",
"jestConfig": "e2e/nx-hardhat-e2e/jest.config.js"
}
}
}
}
},
"cli": {
"defaultCollection": "@nrwl/workspace"
}
}