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