@@ -26,34 +26,34 @@ import type {
26
26
SvelteSpecialElement ,
27
27
SvelteStyleElement ,
28
28
SvelteText ,
29
- } from "../../ast" ;
29
+ } from "../../ast/index.js " ;
30
30
import type ESTree from "estree" ;
31
- import type { Context } from "../../context" ;
32
- import type * as SvAST from "../svelte-ast-types" ;
33
- import type * as Compiler from "../svelte-ast-types-for-v5" ;
31
+ import type { Context } from "../../context/index.js " ;
32
+ import type * as SvAST from "../svelte-ast-types.js " ;
33
+ import type * as Compiler from "../svelte-ast-types-for-v5.js " ;
34
34
35
35
import {
36
36
convertAwaitBlock ,
37
37
convertEachBlock ,
38
38
convertIfBlock ,
39
39
convertKeyBlock ,
40
40
convertSnippetBlock ,
41
- } from "./block" ;
42
- import { getWithLoc , indexOf } from "./common" ;
41
+ } from "./block.js " ;
42
+ import { getWithLoc , indexOf } from "./common.js " ;
43
43
import {
44
44
convertMustacheTag ,
45
45
convertDebugTag ,
46
46
convertRawMustacheTag ,
47
- } from "./mustache" ;
48
- import { convertText } from "./text" ;
49
- import { convertAttributes } from "./attr" ;
50
- import { convertConstTag } from "./const" ;
51
- import { sortNodes } from "../sort" ;
52
- import type { ScriptLetBlockParam } from "../../context/script-let" ;
53
- import { ParseError } from "../.." ;
54
- import { convertRenderTag } from "./render" ;
55
- import type { Child } from "../compat" ;
56
- import { getChildren , getFragment } from "../compat" ;
47
+ } from "./mustache.js " ;
48
+ import { convertText } from "./text.js " ;
49
+ import { convertAttributes } from "./attr.js " ;
50
+ import { convertConstTag } from "./const.js " ;
51
+ import { sortNodes } from "../sort.js " ;
52
+ import type { ScriptLetBlockParam } from "../../context/script-let.js " ;
53
+ import { ParseError } from "../../index.js " ;
54
+ import { convertRenderTag } from "./render.js " ;
55
+ import type { Child } from "../compat.js " ;
56
+ import { getChildren , getFragment } from "../compat.js " ;
57
57
58
58
/** Convert for Fragment or Element or ... */
59
59
export function * convertChildren (
0 commit comments