| 8 | import dts from 'vite-plugin-dts'; |
| 9 | |
| 10 | export interface Options { |
| 11 | root: string; |
| 12 | types?: boolean; |
| 13 | formats?: LibraryFormats[]; |
| 14 | nodeExternals?: boolean; |
| 15 | excludeMonoRepoPackages?: boolean; |
| 16 | } |
| 17 | |
| 18 | export function createShareConfig(options: Options): UserConfig { |
| 19 | const plugins: Plugin[] = [ |
nothing calls this directly
no outgoing calls
no test coverage detected