File tree 3 files changed +13
-4
lines changed
3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 33
33
"test" : " node ./out/test/runTest.js"
34
34
},
35
35
"extensionDependencies" : [
36
- " eamodio.gitlens" ,
37
- " tintinweb.graphviz-interactive-preview"
36
+ " eamodio.gitlens"
38
37
],
39
38
"dependencies" : {
40
- "ts-graphviz" : " ^0.13.1"
39
+ "ts-graphviz" : " ^0.13.1" ,
40
+ "vis-data" : " ^7.1.2" ,
41
+ "vis-network" : " ^9.0.0" ,
42
+ "vis-util" : " ^5.0.1"
41
43
},
42
44
"devDependencies" : {
45
+ "@egjs/hammerjs" : " ^2.0.17" ,
43
46
"@types/glob" : " ^7.1.3" ,
44
47
"@types/mocha" : " ^8.0.0" ,
45
48
"@types/node" : " ^14.0.27" ,
46
49
"@types/vscode" : " ^1.48.0" ,
47
50
"@typescript-eslint/eslint-plugin" : " ^3.8.0" ,
48
51
"@typescript-eslint/parser" : " ^3.8.0" ,
52
+ "component-emitter" : " ^1.3.0" ,
49
53
"esbuild" : " ^0.8.31" ,
50
54
"eslint" : " ^7.6.0" ,
51
55
"glob" : " ^7.1.6" ,
56
+ "keycharm" : " ^0.4.0" ,
52
57
"mocha" : " ^8.0.1" ,
58
+ "timsort" : " ^0.3.0" ,
53
59
"typescript" : " ^3.8.3" ,
60
+ "uuid" : " ^8.3.2" ,
54
61
"vsce" : " ^1.83.0" ,
55
62
"vscode-debugprotocol" : " ^1.43.0" ,
56
63
"vscode-test" : " ^1.4.0"
Original file line number Diff line number Diff line change 1
1
import * as vs from 'vscode' ;
2
2
import { DebugProtocol as dap } from 'vscode-debugprotocol' ;
3
3
import * as gv from "ts-graphviz" ;
4
+ //import * as vis from 'vis-network';
4
5
5
6
export class CodeMapProvider implements vs . DebugAdapterTracker , vs . TextDocumentContentProvider {
6
7
dotDocument ?: vs . TextDocument ;
Original file line number Diff line number Diff line change 4
4
"target" : " es2018" ,
5
5
"outDir" : " out" ,
6
6
"lib" : [
7
- " es2018"
7
+ " es2018" ,
8
+ " dom"
8
9
],
9
10
"sourceMap" : true ,
10
11
"rootDir" : " src" ,
You can’t perform that action at this time.
0 commit comments