Moved minimap rendering to offscreen canvas

This commit is contained in:
tk338g
2021-02-19 21:07:09 +03:00
parent 3b0aff0ac6
commit 6a8680f500
15 changed files with 28144 additions and 175 deletions

11
src/global.d.ts vendored
View File

@@ -88,3 +88,14 @@ interface Blob {
handle?: import("browser-fs-acces").FileSystemHandle;
name?: string;
}
declare module "worker-loader!*" {
// You need to change `Worker`, if you specified a different value for the `workerType` option
class WebpackWorker extends Worker {
constructor();
}
// Uncomment this if you set the `esModule` option to `false`
// export = WebpackWorker;
export default WebpackWorker;
}