-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.json
38 lines (38 loc) · 1019 Bytes
/
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
{
"name": "@0xintuition/protocol",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "packages/protocol/src",
"projectType": "library",
"tags": [],
"targets": {
"build": {
"executor": "@nx/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/packages/protocol",
"tsConfig": "packages/protocol/tsconfig.lib.json",
"packageJson": "packages/protocol/package.json",
"main": "packages/protocol/src/index.ts",
"assets": ["packages/protocol/*.md"]
}
},
"lint": {
"executor": "@nx/eslint:lint",
"options": {
"lintFilePatterns": ["packages/protocol/**/*.{ts,tsx,js,jsx}"]
}
},
"test": {
"executor": "@nx/vite:test",
"options": {
"config": "packages/protocol/vitest.config.ts"
}
},
"nx-release-publish": {
"dependsOn": ["build"],
"options": {
"packageRoot": "dist/{projectRoot}"
}
}
}
}