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