-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.json
39 lines (39 loc) · 1.2 KB
/
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
39
{
"name": "ngx-charts-on-fhir",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "library",
"sourceRoot": "libs/ngx-charts-on-fhir/src",
"prefix": "lib",
"targets": {
"build": {
"executor": "@nx/angular:package",
"options": {
"project": "libs/ngx-charts-on-fhir/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "libs/ngx-charts-on-fhir/tsconfig.lib.prod.json"
},
"development": {
"tsConfig": "libs/ngx-charts-on-fhir/tsconfig.lib.json"
}
},
"defaultConfiguration": "production"
},
"test": {
"executor": "@angular-devkit/build-angular:karma",
"options": {
"main": "libs/ngx-charts-on-fhir/src/test.ts",
"tsConfig": "libs/ngx-charts-on-fhir/tsconfig.spec.json",
"karmaConfig": "libs/ngx-charts-on-fhir/karma.conf.js"
}
},
"test-npm-package": {
"executor": "nx:run-commands",
"dependsOn": ["build"],
"options": {
"command": "DOCKER_BUILDKIT=1 docker build -t test-npm-package -f libs/ngx-charts-on-fhir/test-npm-package.Dockerfile . && docker run test-npm-package"
}
}
}
}