File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,12 +7,12 @@ import { QwikCompiler } from './qwik'
7
7
import { RawCompiler } from './raw'
8
8
import { SolidCompiler } from './solid'
9
9
import { SvelteCompiler } from './svelte'
10
- import type { Compiler } from './types'
10
+ import type { Compiler , CustomCompiler } from './types'
11
11
import { Vue2Compiler } from './vue2'
12
12
import { Vue3Compiler } from './vue3'
13
13
import { WebComponentsCompiler } from './web-components'
14
14
15
- export const compilers : Record < ResolvedOptions [ 'compiler' ] , Compiler > = {
15
+ export const compilers : Record < Exclude < ResolvedOptions [ 'compiler' ] , CustomCompiler > , Compiler > = {
16
16
'astro' : AstroCompiler ,
17
17
'jsx' : JSXCompiler ,
18
18
'marko' : MarkoCompiler ,
Original file line number Diff line number Diff line change @@ -103,4 +103,4 @@ export interface Options {
103
103
iconSource ?: 'legacy' | 'modern' | 'auto'
104
104
}
105
105
106
- export interface ResolvedOptions extends Omit < Required < Options > , 'iconSource' > { }
106
+ export type ResolvedOptions = Omit < Required < Options > , 'iconSource' | 'transform' > & Pick < Options , 'transform' >
You can’t perform that action at this time.
0 commit comments