-
Notifications
You must be signed in to change notification settings - Fork 182
/
angular.json
35 lines (35 loc) · 1.1 KB
/
angular.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
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"ngx-extended-pdf-viewer": {
"root": "projects/ngx-extended-pdf-viewer",
"sourceRoot": "projects/ngx-extended-pdf-viewer/src",
"projectType": "library",
"prefix": "",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"tsConfig": "projects/ngx-extended-pdf-viewer/tsconfig.lib.json",
"project": "projects/ngx-extended-pdf-viewer/ng-package.json"
},
"configurations": {
"production": {
"project": "projects/ngx-extended-pdf-viewer/ng-package.prod.json"
}
}
},
"test": {
"builder": "@angular-devkit/build-angular:jest",
"options": {
"tsConfig": "projects/ngx-extended-pdf-viewer/tsconfig.spec.json",
"include": ["projects/**/*.spec.ts"],
"polyfills": ["zone.js", "zone.js/testing"]
}
}
}
}
}
}