Files
rrweb/packages/rrvideo/tsconfig.json
Yun Feng 23d01387f4 rrvideo: improve the video quality and add a progress bar for the CLI tool (#1197)
* refactor rrvideo: use playwright rather than puppeteer

* add a progress bar for the tool

* add tests for cli.ts

* fix build error

* add change log

* update readme file

* Apply a scaling method to improve the resolution of the output video
2023-05-01 14:04:38 +02:00

29 lines
601 B
JSON

{
"compilerOptions": {
"composite": true,
"target": "ES6",
"module": "commonjs",
"declaration": true,
"sourceMap": true,
"outDir": "./build",
"rootDir": "./src",
"strictNullChecks": true,
"noImplicitAny": true,
"strictBindCallApply": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"exclude": ["build", "node_modules", "test"],
"references": [
{
"path": "../rrweb-player"
},
{
"path": "../types"
}
]
}