Skip to content

Commit

Permalink
rollback and update packages
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveSkender committed Jan 26, 2025
1 parent 95083c2 commit 92f993b
Show file tree
Hide file tree
Showing 3 changed files with 896 additions and 512 deletions.
49 changes: 29 additions & 20 deletions client/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,45 +5,59 @@
"projects": {
"app": {
"projectType": "application",
"root": "",
"sourceRoot": "src",
"prefix": "app",
"schematics": {
"@schematics/angular:component": {
"style": "scss",
"skipTests": true
"style": "scss"
}
},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular/build:application",
"defaultConfiguration": "production",
"options": {
"browser": "src/main.ts",
"index": "src/index.html",
"polyfills": ["zone.js"],
"tsConfig": "tsconfig.app.json",
"aot": true,
"outputPath": {
"base": "dist/app"
},
"browser": "src/main.ts",
"index": "src/index.html",
"polyfills": [
"src/polyfills.ts"
],
"tsConfig": "tsconfig.app.json",
"assets": [
"src/assets",
"src/_headers",
"src/robots.txt",
"src/sitemap.xml"
],
"styles": ["src/styles.scss"],
"styles": [
"src/styles.scss"
],
"stylePreprocessorOptions": {
"includePaths": ["node_modules", "src", "src/styles"]
"includePaths": [
"node_modules",
"src",
"src/styles"]
},
"outputHashing": "all"
},
"defaultConfiguration": "production",
"configurations": {
"development": {
"optimization": false,
"namedChunks": true,
"sourceMap": true
},
"production": {
"optimization": true,
"namedChunks": false,
"sourceMap": {
"scripts": true,
"styles": true,
"hidden": false,
"vendor": false
},
"fileReplacements": [
Expand All @@ -52,23 +66,18 @@
"with": "src/environments/environment.prod.ts"
}
]
},
"development": {
"optimization": false,
"sourceMap": true,
"namedChunks": true
}
}
},
"serve": {
"builder": "@angular/build:dev-server",
"defaultConfiguration": "development",
"configurations": {
"production": {
"buildTarget": "app:build:production"
},
"development": {
"buildTarget": "app:build:development"
},
"production": {
"buildTarget": "app:build:production"
}
}
},
Expand Down
Loading

0 comments on commit 92f993b

Please sign in to comment.