Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ssteuteville committed Nov 9, 2022
1 parent bb9bc03 commit 96094c1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import dts from 'rollup-plugin-dts';
import esbuild from 'rollup-plugin-esbuild';
const dts = require('rollup-plugin-dts').default;
const esbuild = require('rollup-plugin-esbuild').default;
// Rollup.config.js
/**
* @type {import('rollup').RollupOptions}
*/

export default [
module.exports.default = [
{
input: 'src/index.ts',
plugins: [esbuild()],
Expand Down

0 comments on commit 96094c1

Please sign in to comment.