From dbb6e939b0caf4e039a5280910a5eaca136f75cb Mon Sep 17 00:00:00 2001 From: Joey Eamigh <55670930+JoeyEamigh@users.noreply.github.com> Date: Fri, 1 Sep 2023 17:22:16 -0400 Subject: [PATCH] adding vscode config lolw --- .gitignore | 2 +- .vscode/launch.json | 35 +++++++++++++++++++++++++++++++++++ .vscode/settings.json | 4 ++++ 3 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 .vscode/launch.json create mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index da18581..2439d7e 100644 --- a/.gitignore +++ b/.gitignore @@ -23,7 +23,7 @@ bin/ /.nb-gradle/ ### VS Code ### -.vscode/ +# .vscode/ ### Mac OS ### .DS_Store diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..d3fb27c --- /dev/null +++ b/.vscode/launch.json @@ -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" + } + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..9eda3dc --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,4 @@ +{ + "java.project.sourcePaths": ["src"], + "java.project.outputPath": "out" +}