'Why won't live sass compiler generate my css files?

I've checked my settings and everything looks good. I'm able to generate the folders but no css files? Thanks for the help.

{
    "files.autoSave": "afterDelay",
    "editor.suggestSelection": "first",
    "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
    //"java.home": "C:/jdk-14.0.2.12-hotspot",
    "php.validate.executablePath": "C:/xampp/php/php.exe",
    "php.executablePath": "C:/xampp/php/php.exe",
    "window.zoomLevel": 0,
    "explorer.confirmDragAndDrop": false,
    "liveSassCompile.settings.formats": [
        {
            "format": "expanded",
            "extensionName": ".min.css",
            "savePath": "/dist/css"
        }
    ],
    "workbench.colorTheme": "Night Wolf (dark blue)",
    "liveServer.settings.donotShowInfoMsg": true,
    "liveSassCompile.settings.autoprefix": [
    
    ],
    "liveSassCompile.settings.excludeList": [


        "**/node_modules/**",
        ".vscode/**"
    ],
    "liveSassCompile.settings.generateMap": false
}


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source