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 2899696 commit 18dedb2Copy full SHA for 18dedb2
rollup.config.js
@@ -27,7 +27,10 @@ export default [
27
peerDepsExternal(),
28
resolve(),
29
commonjs(),
30
- typescript({ tsconfig: './tsconfig.json' }),
+ typescript({
31
+ tsconfig: './tsconfig.json',
32
+ declaration: false,
33
+ }),
34
terser(),
35
postcss(),
36
],
@@ -37,6 +40,6 @@ export default [
37
40
input: 'src/index.ts',
38
41
output: [{ file: packageJson.types }],
39
42
plugins: [dts.default()],
- external: [/\.css/],
43
+ external: [/\.css$/],
44
},
45
]
0 commit comments