spiegel-keyman/web/bulk_rendering/tsconfig.json
Marc Durdin 21ee5c4900 fix(web): bulk renderer using video stream capture
Instead of using html2canvas which is only an approximation of the DOM,
we now use the video capture API to get an exact capture of the OSK.
2021-01-22 15:51:38 +11:00

16 lines
406 B
JSON

{
"compilerOptions": {
"allowJs": true,
"inlineSources": true,
"module": "none",
"outFile": "../release/renderer/bulk_render.js",
"sourceMap": true,
"target": "es5"
},
"files": [
"../node_modules/@keymanapp/web-utils/src/index.ts",
"../node_modules/@keymanapp/web-environment/environment.inc.ts",
"../node_modules/@keymanapp/lexical-model-layer/message.d.ts",
"renderer_core.ts"
]
}