-
Notifications
You must be signed in to change notification settings - Fork 5
/
project.json
36 lines (36 loc) · 999 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
{
"name": "ngxf-uploader",
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/angular/ngxf-uploader/src",
"prefix": "lib",
"projectType": "library",
"tags": [],
"targets": {
"build": {
"executor": "@nx/angular:package",
"outputs": ["{workspaceRoot}/dist/{projectRoot}"],
"options": {
"project": "libs/angular/ngxf-uploader/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "libs/angular/ngxf-uploader/tsconfig.lib.prod.json"
},
"development": {
"tsConfig": "libs/angular/ngxf-uploader/tsconfig.lib.json"
}
},
"defaultConfiguration": "production"
},
"test": {
"executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
"options": {
"jestConfig": "libs/angular/ngxf-uploader/jest.config.ts"
}
},
"lint": {
"executor": "@nx/eslint:lint"
}
}
}