-
Notifications
You must be signed in to change notification settings - Fork 0
/
angular.json
92 lines (92 loc) · 2.65 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"pdf": {
"projectType": "library",
"root": "projects/pdf",
"sourceRoot": "projects/pdf",
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"tsConfig": "projects/pdf/tsconfig.lib.json",
"project": "projects/pdf/ng-package.json"
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"projects/pdf/**/*.ts",
"projects/pdf/**/*.component.html"
]
}
}
}
},
"example": {
"projectType": "application",
"schematics": {},
"root": "projects/example",
"sourceRoot": "projects/example/src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/example",
"index": "projects/example/src/index.html",
"main": "projects/example/src/main.ts",
"polyfills": "projects/example/src/polyfills.ts",
"tsConfig": "projects/example/tsconfig.app.json",
"aot": false,
"assets": [
"projects/example/src/favicon.ico",
"projects/example/src/assets",
{
"glob": "**/*",
"input": "./projects/pdf/assets",
"output": "./assets"
}
],
"styles": ["projects/example/src/styles.css"],
"allowedCommonJsDependencies": ["pdfjs-dist", "pdf-lib", "md5"],
"scripts": [],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
}
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "example:build"
},
"configurations": {
"production": {
"browserTarget": "example:build:production"
}
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"projects/example/**/*.ts",
"projects/example/**/*.component.html"
]
}
}
}
}
},
"cli": {
"analytics": false
}
}