UNPKG

@remcovaes/web-test-runner-vite-plugin

Version:

@web/test-runner plugin to allow the build to be done by Vite

17 lines (15 loc) 232 B
/** * @param { string[] } options */ export const markExternal = (options) => ({ name: 'mark-external', resolveId(path) { if (!options.includes(path)) { return; } return { id: path, external: true }; }, });