From 3cba336c9956f74122942c5ab64aa76b3cf67f51 Mon Sep 17 00:00:00 2001 From: Babak Parvizi Date: Tue, 17 Sep 2024 14:37:53 -0700 Subject: [PATCH] Dropped @types/node version and updated angularCompilerOptions to accommodate TS2502 error. --- client/Admin/tsconfig.json | 3 ++- client/Application/tsconfig.json | 3 ++- server/cdk/package-lock.json | 2 +- server/cdk/package.json | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/client/Admin/tsconfig.json b/client/Admin/tsconfig.json index 57d64da1..ea3722a2 100644 --- a/client/Admin/tsconfig.json +++ b/client/Admin/tsconfig.json @@ -24,6 +24,7 @@ "enableI18nLegacyMessageIdFormat": false, "strictInjectionParameters": true, "strictInputAccessModifiers": true, - "strictTemplates": true + "strictTemplates": true, + "skipLibCheck": true } } diff --git a/client/Application/tsconfig.json b/client/Application/tsconfig.json index 26acd63d..5354146c 100644 --- a/client/Application/tsconfig.json +++ b/client/Application/tsconfig.json @@ -25,6 +25,7 @@ "enableI18nLegacyMessageIdFormat": false, "strictInjectionParameters": true, "strictInputAccessModifiers": true, - "strictTemplates": true + "strictTemplates": true, + "skipLibCheck": true } } diff --git a/server/cdk/package-lock.json b/server/cdk/package-lock.json index d65a5fe0..6d83231a 100644 --- a/server/cdk/package-lock.json +++ b/server/cdk/package-lock.json @@ -18,7 +18,7 @@ }, "devDependencies": { "@types/jest": "^29.5.1", - "@types/node": "20.1.7", + "@types/node": "20.3.2", "jest": "^29.5.0", "ts-jest": "^29.1.0", "ts-node": "^10.9.1", diff --git a/server/cdk/package.json b/server/cdk/package.json index 994e6abf..fff63b0d 100644 --- a/server/cdk/package.json +++ b/server/cdk/package.json @@ -12,7 +12,7 @@ }, "devDependencies": { "@types/jest": "^29.5.1", - "@types/node": "20.1.7", + "@types/node": "20.3.2", "jest": "^29.5.0", "ts-jest": "^29.1.0", "ts-node": "^10.9.1",