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 { inflate, deflate } from "pako";
import { deflate } from "pako";
import { Transport } from "./webserial";
import { ROM } from "./targets/rom";

View File

@ -6,9 +6,13 @@
"allowSyntheticDefaultImports": true,
"outDir": "./lib",
"moduleResolution": "node",
"noUnusedLocals": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"forceConsistentCasingInFileNames": true,
"lib": ["ES2020", "DOM"],
"importHelpers": true,
"resolveJsonModule": true
},
"include": ["src/**/*"]
}
}