-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkspace.json
157 lines (157 loc) · 4.67 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"version": 2,
"projects": {
"esbuild-plugin-auto-external": "libs/esbuild-plugin/auto-external",
"esbuild-plugin-native-node": "libs/esbuild-plugin/native-node",
"esbuild-plugin-source-map": "libs/esbuild-plugin/source-map",
"esbuild-plugin-swc": "libs/esbuild-plugin/swc",
"esbuild-plugin-transform": "libs/esbuild-plugin/transform",
"load-module": "libs/load-module",
"nx-node": {
"root": "libs/nx-node",
"sourceRoot": "libs/nx-node/src",
"projectType": "library",
"targets": {
"lint": {
"executor": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": ["libs/nx-node/**/*.ts"]
},
"outputs": ["{options.outputFile}"]
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["coverage/libs/nx-node"],
"options": {
"jestConfig": "libs/nx-node/jest.config.js",
"passWithNoTests": true
}
},
"build": {
"executor": "@nrwl/node:package",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/libs/nx-node",
"tsConfig": "libs/nx-node/tsconfig.lib.json",
"packageJson": "libs/nx-node/package.json",
"main": "libs/nx-node/src/index.ts",
"assets": [
"libs/nx-node/*.md",
{
"input": "./libs/nx-node/src",
"glob": "**/!(*.ts)",
"output": "./src"
},
{
"input": "./libs/nx-node/src",
"glob": "**/*.d.ts",
"output": "./src"
},
{
"input": "./libs/nx-node",
"glob": "generators.json",
"output": "."
},
{
"input": "./libs/nx-node",
"glob": "executors.json",
"output": "."
}
]
}
}
}
},
"nx-node-e2e": {
"root": "apps/nx-node-e2e",
"projectType": "application",
"sourceRoot": "apps/nx-node-e2e/src",
"targets": {
"e2e": {
"executor": "@nrwl/nx-plugin:e2e",
"options": {
"target": "nx-node:build",
"npmPackageName": "@starfleet/nx-node",
"pluginOutputPath": "dist/libs/nx-node",
"jestConfig": "apps/nx-node-e2e/jest.config.js"
}
}
}
},
"nx-vite": {
"root": "libs/nx-vite",
"sourceRoot": "libs/nx-vite/src",
"projectType": "library",
"targets": {
"lint": {
"executor": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": ["libs/nx-vite/**/*.ts"]
},
"outputs": ["{options.outputFile}"]
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["coverage/libs/nx-vite"],
"options": {
"jestConfig": "libs/nx-vite/jest.config.js",
"passWithNoTests": true
}
},
"build": {
"executor": "@nrwl/node:package",
"outputs": ["{options.outputPath}"],
"options": {
"updateBuildableProjectDepsInPackageJson": false,
"outputPath": "dist/libs/nx-vite",
"tsConfig": "libs/nx-vite/tsconfig.lib.json",
"packageJson": "libs/nx-vite/package.json",
"main": "libs/nx-vite/src/index.ts",
"assets": [
"libs/nx-vite/*.md",
{
"input": "./libs/nx-vite/src",
"glob": "**/!(*.ts)",
"output": "./src"
},
{
"input": "./libs/nx-vite/src",
"glob": "**/*.d.ts",
"output": "./src"
},
{
"input": "./libs/nx-vite",
"glob": "generators.json",
"output": "."
},
{
"input": "./libs/nx-vite",
"glob": "executors.json",
"output": "."
}
]
}
}
}
},
"nx-vite-e2e": {
"root": "apps/nx-vite-e2e",
"projectType": "application",
"sourceRoot": "apps/nx-vite-e2e/src",
"targets": {
"e2e": {
"executor": "@nrwl/nx-plugin:e2e",
"options": {
"target": "nx-vite:build",
"npmPackageName": "@starfleet/nx-vite",
"pluginOutputPath": "dist/libs/nx-vite",
"jestConfig": "apps/nx-vite-e2e/jest.config.js"
}
}
}
}
},
"cli": {
"defaultCollection": "@nrwl/workspace"
}
}