Create two new folders within the root folder: /lib and /src. The JavaScript, HTML, CSS, and Wasm files will be located in the /src folder while the C file will be in /lib. I only want to include files that are used by the web application in /src. We'll never use the C file directly from the application, only the compiled output.
Copy the /.vscode folder from your /book-examples project into the root folder. This will ensure you're using the existing C/C++ settings and give you a good starting point for the build task.
If you're using macOS or Linux, you'll have to use the terminal to copy the folder; you can accomplish this by running the cp -r command.