Skip to content

Instantly share code, notes, and snippets.

@Bardia95
Bardia95 / dot-replit-debugger-config.go
Created May 6, 2022 07:00
Debugger Config Types & Docstrings for .replit file
// DebuggerConfig holds information necesary to run a language's debugger,
// potentially through a debug adapter that follows the
// https://microsoft.github.io/debug-adapter-protocol/
type DebuggerConfig struct {
// Support indicates whether this is supported by debugproxy.
Support bool `json:"support,omitempty" toml:"support"`
// If specified, then this overrides the main Compile config.
Compile *CompileConfig `json:"compile,omitempty" toml:"compile"`