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

File diff suppressed because it is too large Load Diff

View File

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

View File

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