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:
parent
96258f1f52
commit
c3526677b3
|
|
@ -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"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue