-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathangular.json
More file actions
72 lines (72 loc) · 3.46 KB
/
angular.json
File metadata and controls
72 lines (72 loc) · 3.46 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
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"cli": { "packageManager": "npm", "schematicCollections": ["angular-eslint"] },
"newProjectRoot": "projects",
"projects": {
"jet": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": { "style": "scss", "type": "component" },
"@schematics/angular:directive": { "type": "directive" },
"@schematics/angular:service": { "type": "service" },
"@schematics/angular:guard": { "typeSeparator": "." },
"@schematics/angular:interceptor": { "typeSeparator": "." },
"@schematics/angular:module": { "typeSeparator": "." },
"@schematics/angular:pipe": { "typeSeparator": "." },
"@schematics/angular:resolver": { "typeSeparator": "." }
},
"root": "",
"sourceRoot": "src",
"prefix": "jet",
"architect": {
"build": {
"builder": "@ngx-env/builder:application",
"options": {
"browser": "src/main.ts",
"tsConfig": "tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [{ "glob": "**/*", "input": "public" }],
"styles": ["src/styles.scss", "src/app-styles.scss"]
},
"configurations": {
"production": {
"budgets": [
{ "type": "initial", "maximumWarning": "500kB", "maximumError": "1MB" },
{ "type": "anyComponentStyle", "maximumWarning": "4kB", "maximumError": "8kB" }
],
"outputHashing": "all",
"serviceWorker": "ngsw-config.json"
},
"development": { "optimization": false, "extractLicenses": false, "sourceMap": true }
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@ngx-env/builder:dev-server",
"configurations": {
"production": { "buildTarget": "jet:build:production" },
"development": { "buildTarget": "jet:build:development" }
},
"defaultConfiguration": "development",
"options": {
"headers": {
"Content-Security-Policy": "default-src 'none'; base-uri 'self'; connect-src 'self' http://localhost:54321 https://*.google-analytics.com https://www.googletagmanager.com https://*.supabase.co; font-src 'self' https://fonts.gstatic.com; form-action 'none'; frame-ancestors 'none'; frame-src 'none'; img-src 'self' data: http://localhost:54321 https://www.googletagmanager.com https://*.googleusercontent.com https://fonts.gstatic.com https://*.supabase.co; manifest-src 'self'; script-src 'self' https://www.googletagmanager.com 'unsafe-inline'; style-src 'self' https://fonts.googleapis.com https://www.googletagmanager.com 'unsafe-inline'; worker-src 'self' blob:;",
"Cross-Origin-Embedder-Policy": "credentialless",
"Cross-Origin-Opener-Policy": "same-origin",
"Cross-Origin-Resource-Policy": "same-origin",
"Referrer-Policy": "strict-origin-when-cross-origin",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload",
"X-Content-Type-Options": "nosniff"
}
}
},
"test": { "builder": "@ngx-env/builder:unit-test" },
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": { "lintFilePatterns": ["src/**/*.ts", "src/**/*.html"] }
}
}
}
}
}