test(ct-angular): fix type check

use strict dependencies versions to reduce unpredictable behavior as package-lock.json is gitignored
This commit is contained in:
Younes Jaaidi 2024-03-27 16:54:59 +01:00
parent 96258f1f52
commit c3526677b3
No known key found for this signature in database
GPG key ID: 3126C5717BDF3241
2 changed files with 17 additions and 17 deletions

View file

@ -11,24 +11,23 @@
"typecheck": "tsc --noEmit" "typecheck": "tsc --noEmit"
}, },
"dependencies": { "dependencies": {
"@analogjs/vite-plugin-angular": "0.2.39", "@analogjs/vite-plugin-angular": "1.0.2",
"@angular/animations": "^17.0.0", "@angular/animations": "17.3.1",
"@angular/common": "^17.0.0", "@angular/common": "17.3.1",
"@angular/compiler": "^17.0.0", "@angular/compiler": "17.3.1",
"@angular/core": "^17.0.0", "@angular/core": "17.3.1",
"@angular/forms": "^17.0.0", "@angular/forms": "17.3.1",
"@angular/platform-browser": "^17.0.0", "@angular/platform-browser": "17.3.1",
"@angular/platform-browser-dynamic": "^17.0.0", "@angular/platform-browser-dynamic": "17.3.1",
"@angular/router": "^17.0.0", "@angular/router": "17.3.1",
"rxjs": "~7.8.0", "rxjs": "7.8.1",
"tslib": "^2.3.0", "tslib": "2.6.2",
"zone.js": "~0.14.0" "zone.js": "0.14.4"
}, },
"devDependencies": { "devDependencies": {
"@angular-devkit/build-angular": "^17.0.0", "@angular-devkit/build-angular": "17.3.2",
"@angular/cli": "~17.0.0", "@angular/cli": "17.3.2",
"@angular/compiler-cli": "^17.0.0", "@angular/compiler-cli": "17.3.1",
"typescript": "~5.2.0", "typescript": "5.4.3"
"vite": "~5.0.0"
} }
} }

View file

@ -16,6 +16,7 @@
"experimentalDecorators": true, "experimentalDecorators": true,
"moduleResolution": "node", "moduleResolution": "node",
"importHelpers": true, "importHelpers": true,
"skipLibCheck": true,
"target": "ES2022", "target": "ES2022",
"module": "ES2022", "module": "ES2022",
"useDefineForClassFields": false, "useDefineForClassFields": false,