-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathproject.json
More file actions
54 lines (54 loc) · 1.34 KB
/
project.json
File metadata and controls
54 lines (54 loc) · 1.34 KB
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
{
"name": "workspace-plugin",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "tools/workspace-plugin/src",
"projectType": "library",
"tags": [],
"targets": {
"build": {
"executor": "@nx/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/tools/workspace-plugin",
"main": "tools/workspace-plugin/src/index.ts",
"tsConfig": "tools/workspace-plugin/tsconfig.lib.json",
"assets": [
{
"input": "./tools/workspace-plugin/src",
"glob": "**/!(*.ts)",
"output": "./src"
},
{
"input": "./tools/workspace-plugin/src",
"glob": "**/*.d.ts",
"output": "./src"
},
{
"input": "./tools/workspace-plugin",
"glob": "generators.json",
"output": "."
},
{
"input": "./tools/workspace-plugin",
"glob": "executors.json",
"output": "."
}
]
}
},
"lint": {
"executor": "@nx/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["tools/workspace-plugin/**/*.ts", "tools/workspace-plugin/package.json", "tools/workspace-plugin/generators.json"]
}
},
"test": {
"executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
"options": {
"jestConfig": "tools/workspace-plugin/jest.config.ts"
}
}
}
}