adding vscode config lolw

This commit is contained in:
Joey Eamigh
2023-09-01 17:22:16 -04:00
parent f2a3ba4571
commit dbb6e939b0
3 changed files with 40 additions and 1 deletions

2
.gitignore vendored
View File

@@ -23,7 +23,7 @@ bin/
/.nb-gradle/
### VS Code ###
.vscode/
# .vscode/
### Mac OS ###
.DS_Store

35
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,35 @@
{
// 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": "Current File",
"request": "launch",
"mainClass": "${file}"
},
{
"type": "java",
"name": "HelloWorld",
"request": "launch",
"mainClass": "assn01.HelloWorld",
"projectName": "COMP210_238a5b6"
},
{
"type": "java",
"name": "Part2",
"request": "launch",
"mainClass": "assn01.Part2",
"projectName": "COMP210_238a5b6"
},
{
"type": "java",
"name": "HelloWorld(1)",
"request": "launch",
"mainClass": "hello.HelloWorld",
"projectName": "COMP210_238a5b6"
}
]
}

4
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,4 @@
{
"java.project.sourcePaths": ["src"],
"java.project.outputPath": "out"
}