Interface DebugCompound

interface DebugCompound {
    configurations: (string | {
        folder: string;
        name: string;
    })[];
    name: string;
    preLaunchTask?: string | TaskIdentifier;
    stopAll?: boolean;
}

Properties

configurations: (string | {
    folder: string;
    name: string;
})[]
name: string
preLaunchTask?: string | TaskIdentifier
stopAll?: boolean