Skip to content

fix: Update tsconfig.json #124

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ It supports the following frameworks:

Serverless is amazing and solves many issues with traditional systems. However, writing code for Lambda functions can be challenging. The cycle of writing, deploying, running, fixing, and redeploying is time-consuming and tedious. You could use tools to run Lambda locally or use unit/integration tests; those approaches often don't replicate the actual environment closely enough.

Lambda Live Debugger provides several features that aren't supported by SST or Serverless Framework v4::
Lambda Live Debugger provides several features that aren't supported by SST or Serverless Framework v4:

- **Observability mode** – Enables debugging without impacting the system, so it can even be used in production.
- **Quick toggle** – Debug mode can be turned off and back on almost instantly without requiring a redeploy like other solutions.
Expand Down
26 changes: 13 additions & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@tsconfig/node20": "^20.1.5",
"@tsconfig/node22": "^22.0.1",
"@types/aws-iot-device-sdk": "^2.2.8",
"@types/eslint-config-prettier": "^6.11.3",
"@types/inquirer": "^9.0.7",
Expand Down
2 changes: 1 addition & 1 deletion src/extension/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@tsconfig/node20/tsconfig.json",
"extends": "@tsconfig/node22/tsconfig.json",
"compilerOptions": {
"module": "CommonJS",
"moduleResolution": "node"
Expand Down
2 changes: 1 addition & 1 deletion test/cdk-basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"devDependencies": {
"@types/node": "22.14.0",
"@tsconfig/node20": "^20.1.5",
"@tsconfig/node22": "^22.0.1",
"aws-cdk": "2.1007.0",
"ts-node": "^10.9.2",
"typescript": "~5.8.3",
Expand Down
2 changes: 1 addition & 1 deletion test/cdk-basic/services/testTsCommonJs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"type": "commonjs",
"devDependencies": {
"@tsconfig/node20": "^20.1.5"
"@tsconfig/node22": "^22.0.1"
},
"dependencies": {
"@aws-sdk/client-sts": "^3.787.0"
Expand Down
2 changes: 1 addition & 1 deletion test/cdk-basic/services/testTsCommonJs/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@tsconfig/node20/tsconfig.json",
"extends": "@tsconfig/node22/tsconfig.json",
"compilerOptions": {
"moduleResolution": "node",
"module": "CommonJS"
Expand Down
2 changes: 1 addition & 1 deletion test/cdk-basic/services/testTsEsModule/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"type": "module",
"devDependencies": {
"@tsconfig/node20": "^20.1.5"
"@tsconfig/node22": "^22.0.1"
},
"dependencies": {
"@aws-sdk/client-sts": "^3.787.0"
Expand Down
2 changes: 1 addition & 1 deletion test/cdk-basic/services/testTsEsModule/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@tsconfig/node20/tsconfig.json",
"extends": "@tsconfig/node22/tsconfig.json",
"compilerOptions": {
"module": "esnext",
"moduleResolution": "node"
Expand Down
2 changes: 1 addition & 1 deletion test/cdk-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"devDependencies": {
"@types/node": "22.14.0",
"@tsconfig/node20": "^20.1.5",
"@tsconfig/node22": "^22.0.1",
"aws-cdk": "2.1007.0",
"ts-node": "^10.9.2",
"typescript": "~5.8.3",
Expand Down
2 changes: 1 addition & 1 deletion test/cdk-config/services/testTsCommonJs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"type": "commonjs",
"devDependencies": {
"@tsconfig/node20": "^20.1.5"
"@tsconfig/node22": "^22.0.1"
},
"dependencies": {
"@aws-sdk/client-sts": "^3.787.0"
Expand Down
2 changes: 1 addition & 1 deletion test/cdk-config/services/testTsCommonJs/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@tsconfig/node20/tsconfig.json",
"extends": "@tsconfig/node22/tsconfig.json",
"compilerOptions": {
"moduleResolution": "node",
"module": "CommonJS"
Expand Down
2 changes: 1 addition & 1 deletion test/cdk-config/services/testTsEsModule/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"type": "module",
"devDependencies": {
"@tsconfig/node20": "^20.1.5"
"@tsconfig/node22": "^22.0.1"
},
"dependencies": {
"@aws-sdk/client-sts": "^3.787.0"
Expand Down
2 changes: 1 addition & 1 deletion test/cdk-config/services/testTsEsModule/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@tsconfig/node20/tsconfig.json",
"extends": "@tsconfig/node22/tsconfig.json",
"compilerOptions": {
"module": "esnext",
"moduleResolution": "node"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"type": "commonjs",
"devDependencies": {
"@tsconfig/node20": "^20.1.5"
"@tsconfig/node22": "^22.0.1"
},
"dependencies": {
"@aws-sdk/client-sts": "^3.787.0"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@tsconfig/node20/tsconfig.json",
"extends": "@tsconfig/node22/tsconfig.json",
"compilerOptions": {
"moduleResolution": "node",
"module": "CommonJS"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"type": "module",
"devDependencies": {
"@tsconfig/node20": "^20.1.5"
"@tsconfig/node22": "^22.0.1"
},
"dependencies": {
"@aws-sdk/client-sts": "^3.787.0"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@tsconfig/node20/tsconfig.json",
"extends": "@tsconfig/node22/tsconfig.json",
"compilerOptions": {
"module": "esnext",
"moduleResolution": "node"
Expand Down
2 changes: 1 addition & 1 deletion test/cdk-esm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"destroy": "cdk destroy --all -c environment=test --force"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.5",
"@tsconfig/node22": "^22.0.1",
"@types/aws-lambda": "^8.10.149",
"@types/node": "22.14.0",
"aws-cdk": "2.1007.0",
Expand Down
2 changes: 1 addition & 1 deletion test/cdk-esm/services/testTsCommonJs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"type": "commonjs",
"devDependencies": {
"@tsconfig/node20": "^20.1.5"
"@tsconfig/node22": "^22.0.1"
},
"dependencies": {
"@aws-sdk/client-sts": "^3.787.0"
Expand Down
2 changes: 1 addition & 1 deletion test/cdk-esm/services/testTsCommonJs/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@tsconfig/node20/tsconfig.json",
"extends": "@tsconfig/node22/tsconfig.json",
"compilerOptions": {
"moduleResolution": "node",
"module": "CommonJS"
Expand Down
2 changes: 1 addition & 1 deletion test/cdk-esm/services/testTsEsModule/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"type": "module",
"devDependencies": {
"@tsconfig/node20": "^20.1.5"
"@tsconfig/node22": "^22.0.1"
},
"dependencies": {
"@aws-sdk/client-sts": "^3.787.0"
Expand Down
2 changes: 1 addition & 1 deletion test/cdk-esm/services/testTsEsModule/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@tsconfig/node20/tsconfig.json",
"extends": "@tsconfig/node22/tsconfig.json",
"compilerOptions": {
"module": "esnext",
"moduleResolution": "node"
Expand Down
2 changes: 1 addition & 1 deletion test/opentofu-basic/services/testTsCommonJs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"type": "commonjs",
"devDependencies": {
"@tsconfig/node20": "^20.1.5"
"@tsconfig/node22": "^22.0.1"
},
"dependencies": {
"@aws-sdk/client-sts": "^3.787.0"
Expand Down
2 changes: 1 addition & 1 deletion test/opentofu-basic/services/testTsCommonJs/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@tsconfig/node20/tsconfig.json",
"extends": "@tsconfig/node22/tsconfig.json",
"compilerOptions": {
"moduleResolution": "node",
"module": "CommonJS",
Expand Down
2 changes: 1 addition & 1 deletion test/opentofu-basic/services/testTsEsModule/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"type": "module",
"devDependencies": {
"@tsconfig/node20": "^20.1.5"
"@tsconfig/node22": "^22.0.1"
},
"dependencies": {
"@aws-sdk/client-sts": "^3.787.0"
Expand Down
2 changes: 1 addition & 1 deletion test/opentofu-basic/services/testTsEsModule/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@tsconfig/node20/tsconfig.json",
"extends": "@tsconfig/node22/tsconfig.json",
"compilerOptions": {
"module": "esnext",
"moduleResolution": "node",
Expand Down
2 changes: 1 addition & 1 deletion test/osls-esbuild-cjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"esbuild": "^0.25.2",
"osls": "^3.51.0",
"serverless-esbuild": "^1.55.0",
"@tsconfig/node20": "^20.1.5"
"@tsconfig/node22": "^22.0.1"
},
"dependencies": {
"@aws-sdk/client-sts": "^3.787.0"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@tsconfig/node20/tsconfig.json",
"extends": "@tsconfig/node22/tsconfig.json",
"compilerOptions": {
"moduleResolution": "node",
"module": "CommonJS"
Expand Down
2 changes: 1 addition & 1 deletion test/osls-esbuild-esm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"@types/aws-lambda": "^8.10.149"
},
"dependencies": {
"@tsconfig/node20": "^20.1.5",
"@tsconfig/node22": "^22.0.1",
"@aws-sdk/client-sts": "^3.787.0"
}
}
2 changes: 1 addition & 1 deletion test/osls-esbuild-esm/services/testTsEsModule/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"type": "module",
"devDependencies": {
"@tsconfig/node20": "^20.1.5"
"@tsconfig/node22": "^22.0.1"
},
"dependencies": {
"@aws-sdk/client-sts": "^3.787.0"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@tsconfig/node20/tsconfig.json",
"extends": "@tsconfig/node22/tsconfig.json",
"compilerOptions": {
"module": "esnext",
"moduleResolution": "node"
Expand Down
2 changes: 1 addition & 1 deletion test/osls-esbuild-esm/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@tsconfig/node20/tsconfig.json",
"extends": "@tsconfig/node22/tsconfig.json",
"compilerOptions": {
"module": "esnext",
"moduleResolution": "node"
Expand Down
2 changes: 1 addition & 1 deletion test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
},
"dependencies": {
"@aws-sdk/client-iam": "^3.787.0",
"@tsconfig/node20": "^20.1.5"
"@tsconfig/node22": "^22.0.1"
}
}
2 changes: 1 addition & 1 deletion test/sam-alt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"destroy": "sam delete --config-env test --config-file alt-samconfig.yaml --no-prompts"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.5",
"@tsconfig/node22": "^22.0.1",
"@types/aws-lambda": "^8.10.149"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion test/sam-alt/services/testTsCommonJs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"type": "commonjs",
"devDependencies": {
"@tsconfig/node20": "^20.1.5"
"@tsconfig/node22": "^22.0.1"
},
"dependencies": {
"@aws-sdk/client-sts": "^3.787.0"
Expand Down
2 changes: 1 addition & 1 deletion test/sam-alt/services/testTsCommonJs/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@tsconfig/node20/tsconfig.json",
"extends": "@tsconfig/node22/tsconfig.json",
"compilerOptions": {
"moduleResolution": "node",
"module": "CommonJS"
Expand Down
2 changes: 1 addition & 1 deletion test/sam-alt/services/testTsEsModule/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"type": "module",
"devDependencies": {
"@tsconfig/node20": "^20.1.5"
"@tsconfig/node22": "^22.0.1"
},
"dependencies": {
"@aws-sdk/client-sts": "^3.787.0"
Expand Down
Loading
Loading