We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f15d2f6 commit d193666Copy full SHA for d193666
packages/compiler-core/src/codegen.ts
@@ -218,6 +218,7 @@ function createCodegenContext(
218
generatedLine: context.line,
219
generatedColumn: context.column - 1,
220
source: filename,
221
+ // @ts-ignore it is possible to be null
222
name
223
})
224
}
packages/global.d.ts
@@ -50,14 +50,7 @@ declare module 'source-map-js' {
50
toJSON(): RawSourceMap
51
_names: Set<string>
52
_mappings: {
53
- add(mapping: {
54
- originalLine: number
55
- originalColumn: number
56
- generatedLine: number
57
- generatedColumn: number
58
- source: string
59
- name: string | null
60
- }): void
+ add(mapping: MappingItem): void
61
62
63
0 commit comments