Skip to content

Commit

Permalink
feat: update to Angular 17 (#1073)
Browse files Browse the repository at this point in the history
  • Loading branch information
Phil147 authored and GitHub Enterprise committed Nov 29, 2023
1 parent 49d2dfd commit ebdf31e
Show file tree
Hide file tree
Showing 188 changed files with 13,815 additions and 24,953 deletions.
2 changes: 2 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
"jsdoc/require-description-complete-sentence": "off",
"jsdoc/require-jsdoc": "off",
"jsdoc/require-param": "off",
"jsdoc/require-param-description": "off",
"jsdoc/require-param-type": "off",
"jsdoc/require-property": "off",
"jsdoc/require-property-type": "off",
Expand All @@ -65,6 +66,7 @@
"rxjs/no-subject-unsubscribe": "warn",
"rxjs/no-unbound-methods": "warn",
"rxjs/no-unsafe-takeuntil": "warn",
"@typescript-eslint/no-invalid-void-type": "off",
"no-self-compare": "warn",
"no-unreachable-loop": "warn",
"no-unused-private-class-members": "warn",
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ npm-debug.log
yarn-error.log
testem.log
/typings
.nx

# System Files
.DS_Store
Expand Down
12 changes: 5 additions & 7 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,12 @@
"prefix": "doc",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"allowedCommonJsDependencies": ["parse-color", "decimal.js", "iban", "moment", "i18n-iso-countries"],
"outputPath": "dist/opensource-documentation",
"index": "projects/opensource-documentation/src/index.html",
"main": "projects/opensource-documentation/src/main.ts",
"browser": "projects/opensource-documentation/src/main.ts",
"polyfills": ["zone.js"],
"tsConfig": "projects/opensource-documentation/tsconfig.app.json",
"assets": [
Expand Down Expand Up @@ -161,9 +161,7 @@
"outputHashing": "all"
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
Expand All @@ -175,18 +173,18 @@
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "opensource-documentation:build:production"
"buildTarget": "opensource-documentation:build:production"
},
"development": {
"browserTarget": "opensource-documentation:build:development"
"buildTarget": "opensource-documentation:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "opensource-documentation:build"
"buildTarget": "opensource-documentation:build"
}
},
"lint": {
Expand Down
Loading

0 comments on commit ebdf31e

Please sign in to comment.