Clean up unused import

This commit is contained in:
Paulus Schoutsen 2023-01-13 22:37:49 -05:00
parent 241135436c
commit 1a2862e4ee
2 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,5 @@
import { ESPError } from "./error"; import { ESPError } from "./error";
import { inflate, deflate } from "pako"; import { deflate } from "pako";
import { Transport } from "./webserial"; import { Transport } from "./webserial";
import { ROM } from "./targets/rom"; import { ROM } from "./targets/rom";

View File

@ -6,6 +6,10 @@
"allowSyntheticDefaultImports": true, "allowSyntheticDefaultImports": true,
"outDir": "./lib", "outDir": "./lib",
"moduleResolution": "node", "moduleResolution": "node",
"noUnusedLocals": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"forceConsistentCasingInFileNames": true,
"lib": ["ES2020", "DOM"], "lib": ["ES2020", "DOM"],
"importHelpers": true, "importHelpers": true,
"resolveJsonModule": true "resolveJsonModule": true