UNPKG
crelt
Version:
latest (1.0.6)
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Tiny DOM-element-creation utility
github.com/marijnh/crelt
marijnh/crelt
crelt
/
rollup.config.js
14 lines
(12 loc)
•
269 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import copy
from
"rollup-plugin-copy" export default {
input
:
"index.js"
, output: { file:
"dist/index.cjs"
, format:
"cjs"
, exports:
"default"
}, plugins: [
copy
({targets: [{
src
:
"index.d.ts"
, dest:
"dist"
, rename: () =>
"index.d.cts"
}]}) ] }