-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathproject.json
More file actions
49 lines (49 loc) · 1.07 KB
/
project.json
File metadata and controls
49 lines (49 loc) · 1.07 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
{
"name": "webpack5",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "packages/webpack5",
"projectType": "library",
"generators": {},
"targets": {
"lint": {
"executor": "@nx/eslint:lint",
"options": {
"lintFilePatterns": []
}
},
"build": {
"executor": "@nx/js:tsc",
"inputs": ["default", "^production"],
"outputs": ["{workspaceRoot}/dist/packages/webpack5"],
"options": {
"tsConfig": "{projectRoot}/tsconfig.lib.json",
"outputPath": "{workspaceRoot}/dist/packages/webpack5/dist",
"rootDir": "{projectRoot}/src",
"main": "{projectRoot}/src/index.ts",
"assets": [
{
"input": "{projectRoot}",
"glob": "README.md",
"output": ".."
},
{
"input": "{workspaceRoot}",
"glob": "LICENSE",
"output": ".."
},
{
"input": "{projectRoot}/src/stubs",
"glob": "*.{js,mjs}",
"output": "stubs"
},
{
"input": "{projectRoot}",
"glob": "package.json",
"output": ".."
}
],
"generatePackageJson": false
}
}
}
}