| 1 | import * as path from 'node:path'; |
| 2 | |
| 3 | export interface ViteLocalAliasPolicyOptions { |
| 4 | command: string; |
| 5 | mode: string; |
| 6 | env: Record<string, string | undefined>; |
| 7 | rootDir: string; |
| 8 | pathExists: (targetPath: string) => boolean; |
| 9 | } |
| 10 | |
| 11 | export interface ViteLocalAliasPolicy { |
| 12 | aliases: Record<string, string>; |
nothing calls this directly
no outgoing calls
no test coverage detected