includePath errors

Hello

I have errors “#include errors detected. Please update your includePath.” in all of my .cpp and .h files, I’ve tried editing my includePath but still nothing working, and I’ve tried editing header source paths in the Projucer. If anyone has any ideas please let me know. I might just be missing something basic as I’m quite new to c++.

{
    "configurations": [
        {
            "name": "Win32",
            "includePath": [
                "C:\\Users\\liams\\Downloads\\msys64\\mingw64\\include",
                "${workspaceFolder}/**"
            ],
            "defines": [
                "_DEBUG",
                "UNICODE",
                "_UNICODE"
            ],
            "windowsSdkVersion": "10.0.22621.0",
            "compilerPath": "C:/msys64/mingw64/bin/g++.exe",
            "cStandard": "c17",
            "cppStandard": "c++17",
            "intelliSenseMode": "${default}",
            "forcedInclude": []
        }
    ],
    "version": 4
}

Unfortunately vscode can get a little confused with the way JUCE projects are compiled. It’s sad to say, because Projucer is such a nice way to get started with JUCE, but building your project with cmake and having the cmake vscode extension look after the intellisense seems to give the best results.

Otherwise, however, you can keep filling in that forcedInclude option with more and more header files until it works…

Just to check, your project does compile, right? It’s just intellisense having problems?