Update TypeScript compiler target

This commit is contained in:
Igor Zinken
2026-02-03 21:42:37 +01:00
parent b385e61949
commit 06b39f8dc1
2 changed files with 3 additions and 1 deletions

View File

@@ -74,6 +74,8 @@ export default class LayerRenderer extends ZoomableSprite {
public actionTarget: "source" | "mask";
public cloneStartCoords: Point | undefined;
public toolOptions: any;
// @ts-expect-error TS2612 deliberately overriding declaration to type canvas as ZoomableCanvas
public canvas: ZoomableCanvas;
protected _pointer: Point;

View File

@@ -2,7 +2,7 @@
"include": [ "env.d.ts", "src/**/*", "src/**/*.vue" ],
"exclude": [],
"compilerOptions": {
"target": "es6",
"target": "es2022",
"composite": true,
"baseUrl": ".",
"esModuleInterop": true,