* SourceMap interface for transformation output
| 5 | * SourceMap interface for transformation output |
| 6 | */ |
| 7 | interface SourceMap { |
| 8 | version: number |
| 9 | sources: string[] |
| 10 | names: string[] |
| 11 | sourceRoot?: string |
| 12 | sourcesContent?: string[] |
| 13 | mappings: string |
| 14 | file: string |
| 15 | } |
| 16 | |
| 17 | /** |
| 18 | * Plugin interface matching Vite/Rollup plugin structure |
nothing calls this directly
no outgoing calls
no test coverage detected