After creating template your folder setup should look similar to this
MINISCRIPT-VS/ ├── .vscode/ │ └── launch.json ├── syntaxes/ │ └── miniscript.tmLanguage.json ├── .vscodeignore ├── CHANGELOG.md ├── language-configuration.json ├── package.json ├── README.md └── vsc-extension-quickstart.md
-
/vscode
- This directory contains Visual Studio Code (VS Code) workspace-specific configuration files. -launch.json - This file is used to configure debugging settings for the extension. It defines how the extension should be launched and debugged within VS Code.
-
/syntaxes
- This directory contains files related to syntax for the Miniscript language. (Mostly Highlighting) -miniscript.tmLanguage.json - This file defines the syntax highlighting rules for Miniscript in VS Code.
-
language-configuration.json
- This file defines language-specific configurations for Miniscript in VS Code.
-
package.json
- This is the manifest file for the VS Code extension. it contains meta data
(Other files arent that important)
Top comments (0)