You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/language-server/test/plugins/typescript/features/diagnostics/fixtures/exports-map-svelte/expectedv2.json
+17Lines changed: 17 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,21 @@
1
1
[
2
+
{
3
+
"code": 2307,
4
+
"message": "Cannot find module 'package' or its corresponding type declarations.",
5
+
"range": {
6
+
"end": {
7
+
"character": 45,
8
+
"line": 1
9
+
},
10
+
"start": {
11
+
"character": 36,
12
+
"line": 1
13
+
}
14
+
},
15
+
"severity": 1,
16
+
"source": "ts",
17
+
"tags": []
18
+
},
2
19
{
3
20
"code": 2307,
4
21
"message": "Cannot find module 'package/y' or its corresponding type declarations.",
Copy file name to clipboardExpand all lines: packages/language-server/test/plugins/typescript/features/diagnostics/fixtures/exports-map-svelte/input.svelte
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
<scriptlang="ts">
2
-
importDefaultSvelteWithTSfrom'package';
2
+
importDefaultSvelteWithTSfrom'package';// with https://github.com/sveltejs/language-tools/pull/2478 this would work; needs decision if we want that
0 commit comments