-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use vscode-js-debug instead of deprecated node-debug2
This also restore ability to debug running Node processes (eg start with --inspect). Requires usage of latest LSP4E support for DAP. Fixes #555
- Loading branch information
1 parent
92ece9f
commit b6e8837
Showing
15 changed files
with
619 additions
and
545 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
116 changes: 0 additions & 116 deletions
116
org.eclipse.wildwebdeveloper.tests/src/org/eclipse/wildwebdeveloper/tests/TestDebugTS.java
This file was deleted.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
org.eclipse.wildwebdeveloper.tests/testProjects/HelloWorldTS/.build/index.js
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
org.eclipse.wildwebdeveloper.tests/testProjects/HelloWorldTS/.build/index.js.map
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
4 changes: 3 additions & 1 deletion
4
org.eclipse.wildwebdeveloper.tests/testProjects/HelloWorldTS/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
let user:string = "Eclipse User"; | ||
console.log("Hello world,, " + user + '!'); | ||
new Promise(resolve => setTimeout(resolve, 1000)).then(() => | ||
console.log("Hello world,, " + user + '!') | ||
); |
5 changes: 2 additions & 3 deletions
5
org.eclipse.wildwebdeveloper.tests/testProjects/HelloWorldTS/tsconfig.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es5", | ||
"target": "es2017", | ||
"module": "commonjs", | ||
"lib": ["es6", "dom"], | ||
"allowJs": true, | ||
"sourceMap": true, | ||
"outDir": ".build/", | ||
"strict": true, | ||
"noImplicitAny": true, | ||
"skipLibCheck": true, | ||
"forceConsistentCasingInFileNames": true | ||
"skipLibCheck": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,5 @@ target/ | |
bin/ | ||
language-servers/ | ||
node_modules/ | ||
js-debug/ | ||
package-lock.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.