fork of hey-api/openapi-ts because I need some additional things
1{
2 "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3 "version": 1,
4 "newProjectRoot": "projects",
5 "projects": {
6 "angular": {
7 "projectType": "application",
8 "schematics": {},
9 "root": "",
10 "sourceRoot": "src",
11 "prefix": "app",
12 "architect": {
13 "build": {
14 "builder": "@angular-devkit/build-angular:application",
15 "options": {
16 "outputPath": "dist/angular",
17 "index": "src/index.html",
18 "browser": "src/main.ts",
19 "polyfills": ["zone.js"],
20 "tsConfig": "tsconfig.app.json",
21 "assets": [
22 {
23 "glob": "**/*",
24 "input": "public"
25 }
26 ],
27 "styles": ["src/styles.css"],
28 "scripts": [],
29 "server": "src/main.server.ts",
30 "outputMode": "server",
31 "ssr": {
32 "entry": "src/server.ts"
33 }
34 },
35 "configurations": {
36 "production": {
37 "budgets": [
38 {
39 "type": "initial",
40 "maximumWarning": "500kB",
41 "maximumError": "1MB"
42 },
43 {
44 "type": "anyComponentStyle",
45 "maximumWarning": "4kB",
46 "maximumError": "8kB"
47 }
48 ],
49 "outputHashing": "all"
50 },
51 "development": {
52 "optimization": false,
53 "extractLicenses": false,
54 "sourceMap": true
55 }
56 },
57 "defaultConfiguration": "production"
58 },
59 "serve": {
60 "builder": "@angular-devkit/build-angular:dev-server",
61 "configurations": {
62 "production": {
63 "buildTarget": "angular:build:production"
64 },
65 "development": {
66 "buildTarget": "angular:build:development"
67 }
68 },
69 "defaultConfiguration": "development"
70 },
71 "extract-i18n": {
72 "builder": "@angular-devkit/build-angular:extract-i18n"
73 },
74 "test": {
75 "builder": "@angular-devkit/build-angular:karma",
76 "options": {
77 "polyfills": ["zone.js", "zone.js/testing"],
78 "tsConfig": "tsconfig.spec.json",
79 "assets": [
80 {
81 "glob": "**/*",
82 "input": "public"
83 }
84 ],
85 "styles": ["src/styles.css"],
86 "scripts": []
87 }
88 }
89 }
90 }
91 },
92 "cli": {
93 "analytics": false
94 }
95}