Adding support for maven multi module projects

This commit is contained in:
Peter Murray
2022-10-25 16:23:05 +00:00
committed by GitHub
parent 0b9cd8f382
commit 91697157ce
23 changed files with 988 additions and 172 deletions
-18
View File
@@ -4,23 +4,5 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
<<<<<<< HEAD
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/node_modules/.bin/mocha",
"args": [
"-r",
"ts-node/register",
"--colors",
"${workspaceFolder}/src/depgraph.test.ts"
],
}
=======
>>>>>>> 4b5ca60 (Initial commit)
]
}
+2 -26
View File
@@ -1,26 +1,4 @@
{
<<<<<<< HEAD
"debug.onTaskErrors": "showErrors",
"files.trimTrailingWhitespace": true,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"[javascript]": {
"editor.tabSize": 2
},
"[json]": {
"editor.tabSize": 2
},
"[yaml]": {
"editor.tabSize": 2
},
"[html]": {
"editor.tabSize": 2
},
// GitHub Codespace Theme
"workbench.colorTheme": "GitHub Dark Dimmed"
}
=======
"debug.onTaskErrors": "showErrors",
"files.trimTrailingWhitespace": true,
"editor.tabSize": 2,
@@ -41,8 +19,6 @@
// GitHub Codespace Theme
"workbench.colorTheme": "GitHub Dark Dimmed",
"jest.autoRun": {
"watch": false,
"onSave": "test-file"
"watch": false
}
}
>>>>>>> 4b5ca60 (Initial commit)
}