Skip to content

VSCODE with project setup

Panagiotis Tzortzis edited this page May 25, 2023 · 1 revision

In order to enjoy Intellisense, code completions, class recognition, imports etc, it is necessary to tell vscode on which folder it can find the downloaded classes by sbt. This can be accomplished with the following config in .vscode/settings.json file:

"java.project.sourcePaths": [
        "app"
    ],
    "java.project.referencedLibraries": [
        "target/universal/stage/lib/**/*.jar"
    ]

Clone this wiki locally