We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e749a34 commit 0f6cd15Copy full SHA for 0f6cd15
rollup.config.js
@@ -1,8 +1,10 @@
1
-import typescript from 'rollup-plugin-typescript2'
2
import commonjs from '@rollup/plugin-commonjs'
3
import external from 'rollup-plugin-peer-deps-external'
4
import resolve from '@rollup/plugin-node-resolve'
+import typescript from '@rollup/plugin-typescript'
5
+
6
import pkg from './package.json'
7
8
export default {
9
input: 'src/index.ts',
10
output: [
@@ -23,9 +25,7 @@ export default {
23
25
external(),
24
26
resolve(),
27
typescript({
- rollupCommonJSResolveHack: true,
28
exclude: ['**/__tests__/**'],
- clean: true,
29
}),
30
commonjs({
31
include: ['node_modules/**'],
0 commit comments