Angular v15
This commit is contained in:
parent
f2b1997b1a
commit
fdaa073c63
3 changed files with 2370 additions and 2562 deletions
4885
package-lock.json
generated
4885
package-lock.json
generated
File diff suppressed because it is too large
Load diff
26
package.json
26
package.json
|
|
@ -11,24 +11,24 @@
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@angular/animations": "^14.3.0",
|
"@angular/animations": "^15.2.10",
|
||||||
"@angular/common": "^14.3.0",
|
"@angular/common": "^15.2.10",
|
||||||
"@angular/compiler": "^14.3.0",
|
"@angular/compiler": "^15.2.10",
|
||||||
"@angular/core": "^14.3.0",
|
"@angular/core": "^15.2.10",
|
||||||
"@angular/forms": "^14.3.0",
|
"@angular/forms": "^15.2.10",
|
||||||
"@angular/platform-browser": "^14.3.0",
|
"@angular/platform-browser": "^15.2.10",
|
||||||
"@angular/platform-browser-dynamic": "^14.3.0",
|
"@angular/platform-browser-dynamic": "^15.2.10",
|
||||||
"@angular/router": "^14.3.0",
|
"@angular/router": "^15.2.10",
|
||||||
"lodash": "^4.17.21",
|
"lodash": "^4.17.21",
|
||||||
"rxjs": "~6.6.7",
|
"rxjs": "~6.6.7",
|
||||||
"tslib": "^1.14.1",
|
"tslib": "^1.14.1",
|
||||||
"zone.js": "~0.11.4"
|
"zone.js": "~0.11.4"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@angular-devkit/build-angular": "^14.2.13",
|
"@angular-devkit/build-angular": "^15.2.11",
|
||||||
"@angular/cli": "^14.2.13",
|
"@angular/cli": "^15.2.11",
|
||||||
"@angular/compiler-cli": "^14.3.0",
|
"@angular/compiler-cli": "^15.2.10",
|
||||||
"@angular/language-service": "^14.3.0",
|
"@angular/language-service": "^15.2.10",
|
||||||
"@types/jasmine": "~3.3.8",
|
"@types/jasmine": "~3.3.8",
|
||||||
"@types/jasminewd2": "^2.0.8",
|
"@types/jasminewd2": "^2.0.8",
|
||||||
"@types/jest": "^27.0.2",
|
"@types/jest": "^27.0.2",
|
||||||
|
|
@ -41,6 +41,6 @@
|
||||||
"protractor": "^7.0.0",
|
"protractor": "^7.0.0",
|
||||||
"ts-node": "~7.0.0",
|
"ts-node": "~7.0.0",
|
||||||
"tslint": "~6.1.3",
|
"tslint": "~6.1.3",
|
||||||
"typescript": "~4.6.4"
|
"typescript": "~4.9.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -10,7 +10,7 @@
|
||||||
"module": "esnext",
|
"module": "esnext",
|
||||||
"moduleResolution": "node",
|
"moduleResolution": "node",
|
||||||
"importHelpers": true,
|
"importHelpers": true,
|
||||||
"target": "es2020",
|
"target": "ES2022",
|
||||||
"typeRoots": [
|
"typeRoots": [
|
||||||
"node_modules/@types"
|
"node_modules/@types"
|
||||||
],
|
],
|
||||||
|
|
@ -19,11 +19,20 @@
|
||||||
"dom"
|
"dom"
|
||||||
],
|
],
|
||||||
"paths": {
|
"paths": {
|
||||||
"@assets/*": ["src/assets/*"],
|
"@assets/*": [
|
||||||
"@models/*": ["src/models/*"],
|
"src/assets/*"
|
||||||
"@modules/*": ["src/modules/*"],
|
],
|
||||||
"@shared/*": ["src/shared/*"]
|
"@models/*": [
|
||||||
}
|
"src/models/*"
|
||||||
|
],
|
||||||
|
"@modules/*": [
|
||||||
|
"src/modules/*"
|
||||||
|
],
|
||||||
|
"@shared/*": [
|
||||||
|
"src/shared/*"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"useDefineForClassFields": false
|
||||||
},
|
},
|
||||||
"angularCompilerOptions": {
|
"angularCompilerOptions": {
|
||||||
"fullTemplateTypeCheck": true,
|
"fullTemplateTypeCheck": true,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue