* 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
29 lines
601 B
JSON
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"
|
|
}
|
|
]
|
|
}
|