Skip to content

Commit dafd36d

Browse files
committed
build: fix build failures with updated deps/rollup config
1 parent d56074c commit dafd36d

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
"author": "Ben Coe <[email protected]>",
5252
"license": "ISC",
5353
"devDependencies": {
54+
"@rollup/plugin-typescript": "^9.0.2",
5455
"@types/chai": "^4.2.11",
5556
"@types/mocha": "^9.0.0",
5657
"@types/node": "^16.11.4",
@@ -68,12 +69,12 @@
6869
"rimraf": "^3.0.2",
6970
"rollup": "^2.22.1",
7071
"rollup-plugin-cleanup": "^3.1.1",
71-
"rollup-plugin-ts": "^3.0.2",
7272
"serve": "^14.0.0",
7373
"standardx": "^7.0.0",
7474
"start-server-and-test": "^1.11.2",
7575
"ts-transform-default-export": "^1.0.2",
76-
"typescript": "^4.0.0"
76+
"tslib": "^2.4.1",
77+
"typescript": "^4.8.4"
7778
},
7879
"files": [
7980
"browser.js",

rollup.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import cleanup from 'rollup-plugin-cleanup'
2-
import ts from 'rollup-plugin-ts'
2+
import ts from '@rollup/plugin-typescript'
33
import transformDefaultExport from 'ts-transform-default-export'
44

55
const output = {

0 commit comments

Comments
 (0)