Add a .vscode/launch.json file to the default project template to ease out-of-the-box debugging in VSCode.
Description
Added a .vscode/launch.json file to the default project template to ease out-of-the-box debugging in VSCode
Changes
-made launch.json template. -added to project-initializer.
PR Summary
-
Introduction of .vscode/launch.json file This new file contains settings for starting the "Booster App", specifying what program to run (
src/index.ts), the required tasks to perform before launching ("tsc: build"), where to find the output files (dist/**/*.js), and the environment settings for debugging. This makes it easier for developers to initiate the application in a debug environment. -
Enhancements to the project-initializer.ts file Made changes to import and include the new 'launchJson.template' in files to be generated. These changes are part of optimizing the project initialization process.
-
Modifications to the project/index.ts file Updated to import and include the new 'launchJson.template'. This change helps to keep the record of available templates updated.
-
Addition of launch-json.ts in templates A new file that specifies what command to run when debugging. This simplifies the debugging process by pre-defining the necessary commands.
Hi there,
I’m a first-time contributor and I’m encountering an issue with workflow access. The GitHub Actions workflow requires permissions that I might not have. Could you please provide guidance on how to proceed?
Thank you!
I have added test you can check it out.