1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
{
"exports": {
".": "./mod.ts"
},
"moduleGraph1": {
"/mod.ts": {
"dependencies": [{
"type": "static",
"kind": "import",
"range": [[0, 0], [0, 35]],
"specifier": "./foo.jsx",
"specifierRange": [[0, 22], [0, 33]]
}, {
"type": "static",
"kind": "import",
"range": [[1, 0], [1, 25]],
"specifier": "./foo.tsx",
"specifierRange": [[1, 22], [1, 33]]
}]
},
"/foo.jsx": {
"dependencies": [{
"type": "static",
"kind": "import",
"range": [[0, 0], [0, 60]],
"specifier": "npm:preact-render-to-string",
"specifierRange": [[0, 32], [0, 60]]
}]
},
"/foo.tsx": {
"dependencies": [{
"type": "static",
"kind": "import",
"range": [[0, 0], [0, 60]],
"specifier": "npm:preact-render-to-string",
"specifierRange": [[0, 32], [0, 60]]
}]
}
}
}
|