launch.json wieder hinzugefügt
parent
9ef6e9f22e
commit
bdd910d93d
|
|
@ -1,14 +0,0 @@
|
||||||
# Ignoriere alle .log-Dateien
|
|
||||||
*.log
|
|
||||||
|
|
||||||
# Ignoriere das Verzeichnis build/
|
|
||||||
build/
|
|
||||||
|
|
||||||
# Ignoriere die Datei .env
|
|
||||||
.env
|
|
||||||
|
|
||||||
# Ignoriere alle .DS_Store-Dateien (auf macOS)
|
|
||||||
.DS_Store
|
|
||||||
|
|
||||||
# Ignoriere die launch.json Datei
|
|
||||||
.vscode/launch.json
|
|
||||||
|
|
@ -0,0 +1,22 @@
|
||||||
|
{
|
||||||
|
// Use IntelliSense to learn about possible attributes.
|
||||||
|
// Hover to view descriptions of existing attributes.
|
||||||
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"type": "java",
|
||||||
|
"name": "Main",
|
||||||
|
"request": "launch",
|
||||||
|
"vmArgs": "--module-path C:/Sources/javafx-sdk-22.0.1/lib --add-modules javafx.controls,javafx.fxml",
|
||||||
|
"mainClass": "program.Main",
|
||||||
|
"projectName": "Pegasus_2f3bec48"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "java",
|
||||||
|
"name": "Current File",
|
||||||
|
"request": "launch",
|
||||||
|
"mainClass": "${file}"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue