Fixed a number of warnings

This commit is contained in:
2023-05-12 21:04:39 +02:00
parent fdbb661c17
commit 23cd7bca8d
2 changed files with 2 additions and 4 deletions

View File

@@ -1,6 +1,4 @@
import './style.css' 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"; 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"; type GrElement = "underline" | "blink" | "highlight" | "selectable" | "reverse" | "wide" | "order" | "private-use" | "no-copy" | "wrap";

View File

@@ -15,8 +15,8 @@
/* Linting */ /* Linting */
"strict": true, "strict": true,
"noUnusedLocals": true, // "noUnusedLocals": true,
"noUnusedParameters": true, // "noUnusedParameters": true,
"noFallthroughCasesInSwitch": true "noFallthroughCasesInSwitch": true
}, },
"include": ["src"] "include": ["src"]