Updated @angular/cli

This commit is contained in:
nise.moe 2024-06-08 14:32:35 +02:00
parent f79acd1956
commit 735ab5790d
14 changed files with 2484 additions and 1634 deletions

View File

@ -11,11 +11,12 @@
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/nise-frontend",
"outputPath": {
"base": "dist/nise-frontend"
},
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": [
"zone.js"
],
@ -29,7 +30,8 @@
],
"scripts": [
"src/assets/oneko.js"
]
],
"browser": "src/main.ts"
},
"configurations": {
"production": {
@ -50,9 +52,7 @@
},
"development": {
"statsJson": true,
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true,

File diff suppressed because it is too large Load Diff

View File

@ -11,14 +11,14 @@
},
"private": true,
"dependencies": {
"@angular/animations": "^17.2.2",
"@angular/common": "^17.2.2",
"@angular/compiler": "^17.2.2",
"@angular/core": "^17.2.2",
"@angular/forms": "^17.2.2",
"@angular/platform-browser": "^17.2.2",
"@angular/platform-browser-dynamic": "^17.2.2",
"@angular/router": "^17.2.2",
"@angular/animations": "^18.0.2",
"@angular/common": "^18.0.2",
"@angular/compiler": "^18.0.2",
"@angular/core": "^18.0.2",
"@angular/forms": "^18.0.2",
"@angular/platform-browser": "^18.0.2",
"@angular/platform-browser-dynamic": "^18.0.2",
"@angular/router": "^18.0.2",
"@popperjs/core": "^2.11.8",
"@stomp/rx-stomp": "^2.0.0",
"chart.js": "^4.4.1",
@ -32,10 +32,10 @@
"zone.js": "^0.14.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.2.1",
"@angular/cli": "~17.2.1",
"@angular/compiler-cli": "^17.2.2",
"@angular/localize": "^17.2.2",
"@angular-devkit/build-angular": "^18.0.3",
"@angular/cli": "~18.0.3",
"@angular/compiler-cli": "^18.0.2",
"@angular/localize": "^18.0.2",
"@types/jasmine": "~4.3.0",
"@types/uuid": "^9.0.8",
"jasmine-core": "~4.6.0",
@ -44,7 +44,7 @@
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"typescript": "~5.2.2",
"typescript": "~5.4.5",
"webpack-bundle-analyzer": "^4.10.1"
}
}

View File

@ -6,14 +6,13 @@
"outDir": "./dist/out-tsc",
"forceConsistentCasingInFileNames": true,
"strict": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"importHelpers": true,