|
1 | | -import { HtmlParser } from "../../compiler/src/ml_parser/html_parser.js"; |
2 | | -import { XmlParser } from "../../compiler/src/ml_parser/xml_parser.js"; |
3 | | -import type { TagContentType } from "../../compiler/src/ml_parser/tags.js"; |
4 | | -import { ParseTreeResult as HtmlParseTreeResult } from "../../compiler/src/ml_parser/parser.js"; |
| 1 | +import { HtmlParser } from "../../compiler/src/ml_parser/html_parser.ts"; |
| 2 | +import { XmlParser } from "../../compiler/src/ml_parser/xml_parser.ts"; |
| 3 | +import type { TagContentType } from "../../compiler/src/ml_parser/tags.ts"; |
| 4 | +import { ParseTreeResult as HtmlParseTreeResult } from "../../compiler/src/ml_parser/parser.ts"; |
5 | 5 |
|
6 | 6 | export interface HtmlParseOptions { |
7 | 7 | /** |
@@ -88,21 +88,21 @@ export function parseXml(input: string) { |
88 | 88 | } |
89 | 89 |
|
90 | 90 | // For prettier |
91 | | -export { TagContentType } from "../../compiler/src/ml_parser/tags.js"; |
| 91 | +export { TagContentType } from "../../compiler/src/ml_parser/tags.ts"; |
92 | 92 | export { |
93 | 93 | RecursiveVisitor, |
94 | 94 | visitAll, |
95 | | -} from "../../compiler/src/ml_parser/ast.js"; |
| 95 | +} from "../../compiler/src/ml_parser/ast.ts"; |
96 | 96 | export { |
97 | 97 | ParseSourceSpan, |
98 | 98 | ParseLocation, |
99 | 99 | ParseSourceFile, |
100 | | -} from "../../compiler/src/parse_util.js"; |
101 | | -export { getHtmlTagDefinition } from "../../compiler/src/ml_parser/html_tags.js"; |
| 100 | +} from "../../compiler/src/parse_util.ts"; |
| 101 | +export { getHtmlTagDefinition } from "../../compiler/src/ml_parser/html_tags.ts"; |
102 | 102 |
|
103 | 103 | // Types |
104 | | -export type { ParseTreeResult } from "../../compiler/src/ml_parser/parser.js"; |
105 | | -export type * as Ast from "../../compiler/src/ml_parser/ast.js"; |
| 104 | +export type { ParseTreeResult } from "../../compiler/src/ml_parser/parser.ts"; |
| 105 | +export type * as Ast from "../../compiler/src/ml_parser/ast.ts"; |
106 | 106 |
|
107 | 107 | // Remove these alias in next major release |
108 | 108 | export type { HtmlParseOptions as ParseOptions }; |
|
0 commit comments