forked from ethereum/remix-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.json
49 lines (48 loc) · 1.4 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
40
41
42
43
44
45
46
47
48
49
{
"name": "remix-ws-templates",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/remix-ws-templates/src",
"projectType": "library",
"implicitDependencies": [
],
"targets": {
"build": {
"executor": "@nrwl/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/libs/remix-ws-templates",
"main": "libs/remix-ws-templates/src/index.ts",
"tsConfig": "libs/remix-ws-templates/tsconfig.lib.json",
"updateBuildableProjectDepsInPackageJson": false,
"assets": [
{
"glob": "templates/**/*",
"ignore": [
"templates/**/*/index.ts"
],
"input": "libs/remix-ws-templates/src/",
"output": "src/"
},
{
"glob": "*.md",
"input": "libs/remix-ws-templates/",
"output": "/"
},
{
"glob": "templates/**/.prettierrc",
"input": "libs/remix-ws-templates/src/",
"output": "src/"
}
]
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/remix-ws-templates/**/*.ts"]
}
}
},
"tags": []
}