lambda-live-debugger
Version:
Debug Lambda functions locally like it is running in the cloud
18 lines (17 loc) • 397 B
TypeScript
export type VsCodeLaunchEnv = {
[key: string]: string;
};
export type VsCodeLaunchConfiguration = {
name: string;
type: string;
request: string;
runtimeExecutable: string;
runtimeArgs: string[];
console: string;
skipFiles: string[];
env: VsCodeLaunchEnv;
};
export type VsCodeLaunch = {
version: string;
configurations?: VsCodeLaunchConfiguration[];
};