tidusjar 2 months ago
parent 0ff9eeca10
commit 5a0c15dfbc

@ -82,22 +82,22 @@
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "ombi:build"
"buildTarget": "ombi:build"
},
"configurations": {
"production": {
"browserTarget": "ombi:build:production"
"buildTarget": "ombi:build:production"
},
"hmr": {
"hmr": true,
"browserTarget": "ombi:build:hmr"
"buildTarget": "ombi:build:hmr"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "ombi:build"
"buildTarget": "ombi:build"
}
},
"lint": {

@ -13,17 +13,17 @@
},
"private": true,
"dependencies": {
"@angular/animations": "^16.2.12",
"@angular/cdk": "17.1.2",
"@angular/common": "^16.2.12",
"@angular/compiler": "^16.2.12",
"@angular/core": "^16.2.12",
"@angular/forms": "^16.2.12",
"@angular/material": "17.1.2",
"@angular/platform-browser": "^16.2.12",
"@angular/platform-browser-dynamic": "^16.2.12",
"@angular/platform-server": "^16.2.12",
"@angular/router": "^16.2.12",
"@angular/animations": "^17.1.3",
"@angular/cdk": "16.2.14",
"@angular/common": "^17.1.3",
"@angular/compiler": "^17.1.3",
"@angular/core": "^17.1.3",
"@angular/forms": "^17.1.3",
"@angular/material": "^14.2.7",
"@angular/platform-browser": "^17.1.3",
"@angular/platform-browser-dynamic": "^17.1.3",
"@angular/platform-server": "^17.1.3",
"@angular/router": "^17.1.3",
"@angularclass/hmr": "^3.0.0",
"@auth0/angular-jwt": "^5.0.2",
"@fortawesome/fontawesome-free": "^6.4.2",
@ -37,7 +37,7 @@
"angularx-qrcode": "^16.0.0",
"bootstrap": "^4.2.1",
"core-js": "^2.5.4",
"date-fns": "2.30.0",
"date-fns": "3.3.1",
"jquery": "3.7.1",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
@ -53,9 +53,9 @@
"zone.js": "0.14.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.12",
"@angular/cli": "^16.2.12",
"@angular/compiler-cli": "^16.2.12",
"@angular-devkit/build-angular": "^17.1.3",
"@angular/cli": "^17.1.3",
"@angular/compiler-cli": "^17.1.3",
"@babel/core": "^7.18.9",
"@compodoc/compodoc": "^1.1.19",
"@storybook/angular": "7.6.14",

@ -1,5 +1,4 @@
/***************************************************************************************************
* Load `$localize` onto the global scope - used if i18n tags appear in Angular templates.
*/
import "core-js/es7/reflect";
import "zone.js/dist/zone";
import 'core-js/es7/reflect';

@ -16,7 +16,10 @@
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"typeRoots": [
"node_modules/@types"
"node_modules/@types",
"./node_modules/@types",
"../node_modules/@types",
"../../node_modules/@types"
],
"lib": [
"es2017",

@ -20,12 +20,15 @@
"module": "ES2022",
"lib": [
"ES2022",
"dom"
"dom",
"ESNext.Intl",
"ES2022.Intl"
]
},
"types": [
"node"
],
"typeRoots": [ "./node_modules/@types", "../node_modules/@types", "../../node_modules/@types" ],
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save