| 4 | |
| 5 | /** @public */ |
| 6 | export interface PartytownRollupOptions { |
| 7 | /** An absolute path to the destination directory where the lib files should be copied. */ |
| 8 | dest?: string; |
| 9 | |
| 10 | /** |
| 11 | * When `debug` is set to `false`, the `lib/debug` directory will not be copied. |
| 12 | * The default is that both the production and debug directories are copied to the destination. |
| 13 | */ |
| 14 | debug?: boolean; |
| 15 | } |
| 16 | |
| 17 | /** |
| 18 | * The Rollup plugin will copy Partytown `lib` directory to the given destination, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…