-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.json
More file actions
33 lines (33 loc) · 838 Bytes
/
project.json
File metadata and controls
33 lines (33 loc) · 838 Bytes
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
{
"name": "fly-node",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "packages/fly-node/src",
"projectType": "library",
"tags": ["scope:fly-node", "type:lib"],
"targets": {
"build": {
"executor": "@nx/esbuild:esbuild",
"options": {
"assets": ["packages/fly-node/*.md"],
"format": ["cjs", "esm"]
}
},
"integration-test": {
"executor": "nx:run-commands",
"cache": true,
"inputs": ["default", "^production"],
"outputs": [
"{workspaceRoot}/coverage/packages/fly-node/integration-tests"
],
"options": {
"cwd": "{projectRoot}",
"command": "vitest --config vitest.integration.config.mts"
},
"configurations": {
"ci": {
"coverage": true
}
}
}
}
}