converts irc logs to html files that look like discord
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
239 B

2 years ago
  1. import merge from 'deepmerge';
  2. import { createBasicConfig } from '@open-wc/building-rollup';
  3. const baseConfig = createBasicConfig();
  4. export default merge(baseConfig, {
  5. input: '.out-tsc/src/main.js',
  6. output: {
  7. dir: '.out',
  8. }
  9. });