UNPKG
vertecs
Version:
latest (2.2.2)
2.2.2
2.2.1
2.1.1
2.1.0
2.0.1
1.0.0
A typescript entity-component-system framework
vertecs
/
rollup.config.js
21 lines
(19 loc)
•
386 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import ts from
"rollup-plugin-ts"
; export default [ {
input
: [
"./src/index.ts"
],
output
: { file:
"dist/index.cjs"
,
format
:
"cjs"
, }, plugins: [ts()], }, {
input
: [
"./src/index.ts"
],
output
: { file:
"dist/index.mjs"
,
format
:
"esm"
, }, plugins: [ts()], }, ];