-
Notifications
You must be signed in to change notification settings - Fork 301
/
angular.json
131 lines (131 loc) · 5.18 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"ngx-mask": {
"root": "",
"sourceRoot": "src",
"projectType": "application",
"prefix": "app",
"schematics": {},
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:application",
"options": {
"security": { "autoCsp": true },
"outputPath": "dist/ngx-mask",
"index": "src/index.html",
"browser": "src/main.ts",
"tsConfig": "tsconfig.app.json",
"assets": ["src/assets", "src/favicon.ico"],
"styles": [
"node_modules/highlight.js/styles/github.css",
"src/styles.scss"
],
"scripts": [],
"extractLicenses": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
},
"configurations": {
"production": {
"define": {
"VERSION": "'<%version%>'"
},
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "2mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "15kb",
"maximumError": "15kb"
}
],
"outputHashing": "all"
},
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true
}
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"buildTarget": "ngx-mask:build"
},
"configurations": {
"production": {
"buildTarget": "ngx-mask:build:production"
}
}
},
"test": {
"builder": "@angular-devkit/build-angular:web-test-runner",
"options": {
"tsConfig": "tsconfig.spec.json",
"inlineStyleLanguage": "scss",
"assets": ["src/favicon.ico", "src/assets"],
"polyfills": ["zone.js", "zone.js/testing"],
"styles": ["src/styles.scss"],
"scripts": []
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": ["src/**/*.ts", "src/**/*.html"]
}
}
}
},
"ngx-mask-lib": {
"root": "projects/ngx-mask-lib",
"sourceRoot": "projects/ngx-mask-lib/src",
"projectType": "library",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"tsConfig": "projects/ngx-mask-lib/tsconfig.lib.json",
"project": "projects/ngx-mask-lib/ng-package.json"
},
"configurations": {
"production": {
"project": "projects/ngx-mask-lib/ng-package.prod.json",
"tsConfig": "projects/ngx-mask-lib/tsconfig.lib.prod.json"
}
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": ["**/*.js", "**/*.ts", "**/*.html", "**/*.json"]
}
},
"ct": {
"builder": "@nrwl/cypress:cypress",
"options": {
"cypressConfig": "projects/ngx-mask-lib/cypress.json",
"tsConfig": "projects/ngx-mask-lib/tsconfig.cypress.json",
"testingType": "component"
}
}
}
}
},
"cli": {
"warnings": {
"typescriptMismatch": false
},
"analytics": "682218d2-280d-47b1-b385-b2c8c903f9a9"
}
}