Skip to content

Commit

Permalink
yarn ng update @angular/cli --name=use-application-builder
Browse files Browse the repository at this point in the history
  • Loading branch information
kasaharu committed Feb 12, 2024
1 parent 664d6d6 commit d8b8958
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
16 changes: 9 additions & 7 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,15 @@
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/portfolio",
"outputPath": {
"base": "dist/portfolio"
},
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"polyfills": [
"src/polyfills.ts"
],
"tsConfig": "tsconfig.app.json",
"assets": [
"src/favicon.ico",
Expand All @@ -54,7 +57,8 @@
"scripts": [],
"allowedCommonJsDependencies": [
"xml2js"
]
],
"browser": "src/main.ts"
},
"configurations": {
"production": {
Expand All @@ -79,9 +83,7 @@
"outputHashing": "all"
},
"development": {
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
Expand Down
3 changes: 1 addition & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,18 @@
"outDir": "./dist/out-tsc",
"forceConsistentCasingInFileNames": true,
"strict": true,
"esModuleInterop": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"importHelpers": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"target": "ES2022",
"module": "es2020",
"allowSyntheticDefaultImports": true,
"typeRoots": [
"node_modules/@types"
],
Expand Down

0 comments on commit d8b8958

Please sign in to comment.