Interface DebugConfiguration

Configuration for a debug session.

interface DebugConfiguration {
    name: string;
    request: string;
    type: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Additional debug type specific properties.

Properties

Properties

name: string

The name of the debug session.

request: string

The request type of the debug session.

type: string

The type of the debug session.