-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathangular.json
More file actions
124 lines (124 loc) · 5.16 KB
/
Copy pathangular.json
File metadata and controls
124 lines (124 loc) · 5.16 KB
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
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"cli": {
"cache": {
"enabled": true,
"environment": "all",
"path": ".angular/cache"
},
"packageManager": "npm",
"schematicCollections": ["angular-eslint"],
"analytics": false
},
"newProjectRoot": "projects",
"projects": {
"townofwiley-app": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
}
},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular/build:application",
"options": {
"browser": "src/main.ts",
"tsConfig": "tsconfig.app.json",
"inlineStyleLanguage": "scss",
"allowedCommonJsDependencies": ["buffer", "crc-32"],
"assets": [
{
"glob": "**/*",
"input": "public"
}
],
"styles": [
"src/tailwind.css",
"node_modules/primeicons/primeicons.css",
"node_modules/@aws-amplify/ui-angular/theme.css",
"src/styles.scss"
],
"server": "src/main.server.ts",
"outputMode": "static",
"security": {
"allowedHosts": []
},
"ssr": {
"entry": "src/server.ts"
}
},
"configurations": {
"production": {
"serviceWorker": "ngsw-config.json",
"budgets": [
{
"type": "initial",
"maximumWarning": "2.1mb",
"maximumError": "5mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "64kb",
"maximumError": "72kb"
}
],
"outputHashing": "all",
"sourceMap": false
},
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true
},
"unit-test": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true,
"polyfills": ["src/unit-test-polyfills.ts"]
},
"stats": {
"budgets": []
}
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular/build:dev-server",
"options": {
"headers": {
"Content-Security-Policy": "default-src 'self'; worker-src 'self'; script-src 'self' 'unsafe-inline' https://www.googletagmanager.com https://*.googletagmanager.com https://www.google-analytics.com; style-src 'self' 'unsafe-inline'; style-src-attr 'unsafe-inline'; img-src 'self' data: https: https://*.google-analytics.com https://*.googletagmanager.com; media-src 'self' data: blob: https://townofwiley-documents-storage.s3.us-east-2.amazonaws.com https://townofwiley-documents-storage-main.s3.us-east-2.amazonaws.com; connect-src 'self' https://*.appsync-api.us-east-2.amazonaws.com wss://*.appsync-realtime-api.us-east-2.amazonaws.com https://cognito-idp.us-east-2.amazonaws.com https://cognito-identity.us-east-2.amazonaws.com https://cognito-sync.us-east-2.amazonaws.com https://townofwiley-staff.auth.us-east-2.amazoncognito.com https://townofwiley-documents-storage.s3.us-east-2.amazonaws.com https://townofwiley-documents-storage-main.s3.us-east-2.amazonaws.com https://api.weather.gov https://alerts.weather.gov https://radar.weather.gov https://*.lambda-url.us-east-2.on.aws https://*.execute-api.us-east-2.amazonaws.com https://www.googletagmanager.com https://*.googletagmanager.com https://www.google.com https://google.com https://www.google-analytics.com https://*.google-analytics.com https://*.analytics.google.com https://analytics.google.com https://*.g.doubleclick.net https://stats.g.doubleclick.net; font-src 'self' data:; frame-src 'self' https://www.googletagmanager.com https://townofwiley-documents-storage.s3.us-east-2.amazonaws.com https://townofwiley-documents-storage-main.s3.us-east-2.amazonaws.com; object-src 'none'; base-uri 'self'; form-action 'self' https://townofwiley-staff.auth.us-east-2.amazoncognito.com"
}
},
"configurations": {
"production": {
"buildTarget": "townofwiley-app:build:production"
},
"development": {
"buildTarget": "townofwiley-app:build:development"
}
},
"defaultConfiguration": "development"
},
"test": {
"builder": "@angular/build:unit-test",
"options": {
"buildTarget": "townofwiley-app:build:unit-test",
"providersFile": "src/test-providers.ts",
"setupFiles": ["src/unit-test-browser-isolation.setup.ts"]
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": ["src/**/*.ts", "src/**/*.html"]
}
}
}
}
}
}