Skip to content

Commit

Permalink
chore: configure build command
Browse files Browse the repository at this point in the history
  • Loading branch information
hanna-skryl committed Apr 28, 2024
1 parent 05e71d5 commit 7a96242
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
.angular
dist
node_modules
docs
2 changes: 1 addition & 1 deletion angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
},
"options": {
"assets": ["src/assets", "src/assets/*"],
"index": "docs/index.html",
"index": "src/index.html",
"browser": "src/main.ts",
"polyfills": ["zone.js"],
"inlineStyleLanguage": "scss",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build"
"build": "ng build --output-path docs --base-href /multi-step-form/"
},
"dependencies": {
"@angular/animations": "^17.2.0",
Expand Down
File renamed without changes.
5 changes: 2 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,10 @@
"experimentalDecorators": true,
"moduleResolution": "node",
"importHelpers": true,
"target": "ES2015",
"target": "ES2022",
"module": "ES2022",
"useDefineForClassFields": false,
"lib": ["ES2022", "dom"],
"paths": []
"lib": ["ES2022", "dom"]
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
Expand Down

0 comments on commit 7a96242

Please sign in to comment.