refactor the test infra: use puppeteer instead of jsdom to get rid of some hack implementations

This commit is contained in:
Yanzhen Yu
2026-04-01 12:00:00 +08:00
parent 0e35b86d87
commit 7fadc986ec
9 changed files with 125 additions and 72 deletions

10
rollup.config.js Normal file
View File

@@ -0,0 +1,10 @@
import typescript from 'rollup-plugin-typescript';
export default {
input: './src/index.ts',
plugins: [typescript()],
output: {
name: 'rrweb',
format: 'iife',
},
};