-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathproject.json
31 lines (31 loc) · 867 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
{
"name": "cli",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"type": "library",
"sourceRoot": "packages/cli/src",
"targets": {
"build": {
"executor": "@nrwl/js:tsc",
"options": {
"outputPath": "dist/cli",
"main": "packages/cli/src/main.ts",
"tsConfig": "packages/cli/tsconfig.build.json",
"clean": true,
"packageJson": "packages/cli/package.json",
"assets": ["packages/cli/*.md"],
"buildableProjectDepsInPackageJsonType": "dependencies",
"updateBuildableProjectDepsInPackageJson": true
}
},
"test": {
"executor": "nx-uvu:uvu",
"options": {
"rootDir": "./packages/cli/test",
"coverage": true,
"coverageConfig": "./packages/cli/.c8rc",
"useSwc": true
}
}
},
"implicitDependencies": []
}