From 23cd7bca8ded0a68341ec5a3c09448dfee8e8891 Mon Sep 17 00:00:00 2001 From: TQ Hirsch Date: Fri, 12 May 2023 21:04:39 +0200 Subject: [PATCH] Fixed a number of warnings --- js3270/src/main.ts | 2 -- js3270/tsconfig.json | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/js3270/src/main.ts b/js3270/src/main.ts index 71a2482..0685dc4 100644 --- a/js3270/src/main.ts +++ b/js3270/src/main.ts @@ -1,6 +1,4 @@ import './style.css' -import typescriptLogo from './typescript.svg' -import viteLogo from '/vite.svg' import {Action, Color, Cursor, IndErase, Indication, IndScreen, InitializeIndication, Operation} from "./suite3270.ts"; type GrElement = "underline" | "blink" | "highlight" | "selectable" | "reverse" | "wide" | "order" | "private-use" | "no-copy" | "wrap"; diff --git a/js3270/tsconfig.json b/js3270/tsconfig.json index 75abdef..ec0cdb2 100644 --- a/js3270/tsconfig.json +++ b/js3270/tsconfig.json @@ -15,8 +15,8 @@ /* Linting */ "strict": true, - "noUnusedLocals": true, - "noUnusedParameters": true, +// "noUnusedLocals": true, +// "noUnusedParameters": true, "noFallthroughCasesInSwitch": true }, "include": ["src"]