Skip to content

Commit

Permalink
Merge branch 'websockets' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
lwestfall committed Jan 7, 2024
2 parents 55529f8 + 6cf7fad commit 6ae37ba
Show file tree
Hide file tree
Showing 137 changed files with 5,789 additions and 511 deletions.
40 changes: 29 additions & 11 deletions src/Client/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,14 @@
"outputPath": "dist/cbc",
"index": "src/index.html",
"browser": "src/main.ts",
"polyfills": ["zone.js"],
"polyfills": [
"zone.js"
],
"tsConfig": "tsconfig.app.json",
"assets": ["src/favicon.png", "src/assets"],
"assets": [
"src/favicon.png",
"src/assets"
],
"styles": [
"node_modules/bootstrap/dist/css/bootstrap.min.css",
"src/styles.css"
Expand All @@ -30,8 +35,8 @@
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
"maximumWarning": "1.5mb",
"maximumError": "2mb"
},
{
"type": "anyComponentStyle",
Expand All @@ -45,8 +50,8 @@
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
"maximumWarning": "1.5mb",
"maximumError": "2mb"
},
{
"type": "anyComponentStyle",
Expand Down Expand Up @@ -100,24 +105,37 @@
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"polyfills": ["zone.js", "zone.js/testing"],
"polyfills": [
"zone.js",
"zone.js/testing"
],
"tsConfig": "tsconfig.spec.json",
"assets": ["src/favicon.png", "src/assets"],
"styles": ["src/styles.css"],
"assets": [
"src/favicon.png",
"src/assets"
],
"styles": [
"src/styles.css"
],
"scripts": []
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": ["src/**/*.ts", "src/**/*.html"]
"lintFilePatterns": [
"src/**/*.ts",
"src/**/*.html"
]
}
}
}
}
},
"cli": {
"schematicCollections": ["@angular-eslint/schematics"],
"schematicCollections": [
"@angular-eslint/schematics"
],
"analytics": false
}
}
3 changes: 2 additions & 1 deletion src/Client/ng-openapi-gen.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"$schema": "node_modules/ng-openapi-gen/ng-openapi-gen-schema.json",
"input": "https://localhost:7045/swagger/v1/swagger.json",
"skipJsonSuffix": true
"skipJsonSuffix": true,
"ignoreUnusedModels": false
}
Loading

0 comments on commit 6ae37ba

Please sign in to comment.