mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-21 05:43:19 -07:00
ng17
This commit is contained in:
parent
0ff9eeca10
commit
5a0c15dfbc
6 changed files with 1283 additions and 2229 deletions
|
@ -82,22 +82,22 @@
|
||||||
"serve": {
|
"serve": {
|
||||||
"builder": "@angular-devkit/build-angular:dev-server",
|
"builder": "@angular-devkit/build-angular:dev-server",
|
||||||
"options": {
|
"options": {
|
||||||
"browserTarget": "ombi:build"
|
"buildTarget": "ombi:build"
|
||||||
},
|
},
|
||||||
"configurations": {
|
"configurations": {
|
||||||
"production": {
|
"production": {
|
||||||
"browserTarget": "ombi:build:production"
|
"buildTarget": "ombi:build:production"
|
||||||
},
|
},
|
||||||
"hmr": {
|
"hmr": {
|
||||||
"hmr": true,
|
"hmr": true,
|
||||||
"browserTarget": "ombi:build:hmr"
|
"buildTarget": "ombi:build:hmr"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"extract-i18n": {
|
"extract-i18n": {
|
||||||
"builder": "@angular-devkit/build-angular:extract-i18n",
|
"builder": "@angular-devkit/build-angular:extract-i18n",
|
||||||
"options": {
|
"options": {
|
||||||
"browserTarget": "ombi:build"
|
"buildTarget": "ombi:build"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"lint": {
|
"lint": {
|
||||||
|
|
|
@ -13,17 +13,17 @@
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@angular/animations": "^16.2.12",
|
"@angular/animations": "^17.1.3",
|
||||||
"@angular/cdk": "17.1.2",
|
"@angular/cdk": "16.2.14",
|
||||||
"@angular/common": "^16.2.12",
|
"@angular/common": "^17.1.3",
|
||||||
"@angular/compiler": "^16.2.12",
|
"@angular/compiler": "^17.1.3",
|
||||||
"@angular/core": "^16.2.12",
|
"@angular/core": "^17.1.3",
|
||||||
"@angular/forms": "^16.2.12",
|
"@angular/forms": "^17.1.3",
|
||||||
"@angular/material": "17.1.2",
|
"@angular/material": "^14.2.7",
|
||||||
"@angular/platform-browser": "^16.2.12",
|
"@angular/platform-browser": "^17.1.3",
|
||||||
"@angular/platform-browser-dynamic": "^16.2.12",
|
"@angular/platform-browser-dynamic": "^17.1.3",
|
||||||
"@angular/platform-server": "^16.2.12",
|
"@angular/platform-server": "^17.1.3",
|
||||||
"@angular/router": "^16.2.12",
|
"@angular/router": "^17.1.3",
|
||||||
"@angularclass/hmr": "^3.0.0",
|
"@angularclass/hmr": "^3.0.0",
|
||||||
"@auth0/angular-jwt": "^5.0.2",
|
"@auth0/angular-jwt": "^5.0.2",
|
||||||
"@fortawesome/fontawesome-free": "^6.4.2",
|
"@fortawesome/fontawesome-free": "^6.4.2",
|
||||||
|
@ -37,7 +37,7 @@
|
||||||
"angularx-qrcode": "^16.0.0",
|
"angularx-qrcode": "^16.0.0",
|
||||||
"bootstrap": "^4.2.1",
|
"bootstrap": "^4.2.1",
|
||||||
"core-js": "^2.5.4",
|
"core-js": "^2.5.4",
|
||||||
"date-fns": "2.30.0",
|
"date-fns": "3.3.1",
|
||||||
"jquery": "3.7.1",
|
"jquery": "3.7.1",
|
||||||
"lodash": "^4.17.21",
|
"lodash": "^4.17.21",
|
||||||
"lodash-es": "^4.17.21",
|
"lodash-es": "^4.17.21",
|
||||||
|
@ -53,9 +53,9 @@
|
||||||
"zone.js": "0.14.3"
|
"zone.js": "0.14.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@angular-devkit/build-angular": "^16.2.12",
|
"@angular-devkit/build-angular": "^17.1.3",
|
||||||
"@angular/cli": "^16.2.12",
|
"@angular/cli": "^17.1.3",
|
||||||
"@angular/compiler-cli": "^16.2.12",
|
"@angular/compiler-cli": "^17.1.3",
|
||||||
"@babel/core": "^7.18.9",
|
"@babel/core": "^7.18.9",
|
||||||
"@compodoc/compodoc": "^1.1.19",
|
"@compodoc/compodoc": "^1.1.19",
|
||||||
"@storybook/angular": "7.6.14",
|
"@storybook/angular": "7.6.14",
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
/***************************************************************************************************
|
/***************************************************************************************************
|
||||||
* Load `$localize` onto the global scope - used if i18n tags appear in Angular templates.
|
* Load `$localize` onto the global scope - used if i18n tags appear in Angular templates.
|
||||||
*/
|
*/
|
||||||
import "core-js/es7/reflect";
|
import 'core-js/es7/reflect';
|
||||||
import "zone.js/dist/zone";
|
|
||||||
|
|
|
@ -16,7 +16,10 @@
|
||||||
"resolveJsonModule": true,
|
"resolveJsonModule": true,
|
||||||
"allowSyntheticDefaultImports": true,
|
"allowSyntheticDefaultImports": true,
|
||||||
"typeRoots": [
|
"typeRoots": [
|
||||||
"node_modules/@types"
|
"node_modules/@types",
|
||||||
|
"./node_modules/@types",
|
||||||
|
"../node_modules/@types",
|
||||||
|
"../../node_modules/@types"
|
||||||
],
|
],
|
||||||
"lib": [
|
"lib": [
|
||||||
"es2017",
|
"es2017",
|
||||||
|
|
|
@ -20,12 +20,15 @@
|
||||||
"module": "ES2022",
|
"module": "ES2022",
|
||||||
"lib": [
|
"lib": [
|
||||||
"ES2022",
|
"ES2022",
|
||||||
"dom"
|
"dom",
|
||||||
|
"ESNext.Intl",
|
||||||
|
"ES2022.Intl"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"types": [
|
"types": [
|
||||||
"node"
|
"node"
|
||||||
],
|
],
|
||||||
|
"typeRoots": [ "./node_modules/@types", "../node_modules/@types", "../../node_modules/@types" ],
|
||||||
"angularCompilerOptions": {
|
"angularCompilerOptions": {
|
||||||
"enableI18nLegacyMessageIdFormat": false,
|
"enableI18nLegacyMessageIdFormat": false,
|
||||||
"strictInjectionParameters": true,
|
"strictInjectionParameters": true,
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue