UNPKG

botframework-streaming

Version:

Streaming library for the Microsoft Bot Framework

23 lines (19 loc) 507 B
import { fromRollup } from '@web/dev-server-rollup'; import rollupCommonjs from '@rollup/plugin-commonjs'; const commonjs = fromRollup(rollupCommonjs); var webTestRunner_config = { nodeResolve: true, files: [ "test/*.js", "!test/virtual-machines.js" ], plugins: [ commonjs({ include: [ // the commonjs plugin is slow, list the required packages explicitly: "**/node_modules/type-detect/**/*", ], }), ], }; export { webTestRunner_config as default };