Remove unnecessary warning suppressions

This commit is contained in:
Florine W. Dekker 2022-12-06 18:15:06 +01:00
parent bde4482343
commit 3cc6350803
Signed by: FWDekker
GPG Key ID: D3DCFAA8A4560BE0
3 changed files with 6 additions and 8 deletions

BIN
package-lock.json generated

Binary file not shown.

View File

@ -1,6 +1,6 @@
{
"name": "doomsday",
"version": "1.5.1",
"version": "1.5.2",
"description": "Test your mastery of Conway's Doomsday rule.",
"author": "Florine W. Dekker",
"browser": "dist/bundle.js",
@ -16,7 +16,7 @@
"deploy": "grunt deploy"
},
"dependencies": {
"luxon": "^3.1.0"
"luxon": "^3.1.1"
},
"devDependencies": {
"@types/luxon": "^3.1.0",
@ -28,9 +28,9 @@
"grunt-focus": "^1.0.0",
"grunt-text-replace": "^0.4.0",
"grunt-webpack": "^5.0.0",
"ts-loader": "^9.4.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0"
"webpack-cli": "^5.0.1"
}
}

View File

@ -1,7 +1,5 @@
// @ts-ignore
const {$, doAfterLoad} = window.fwdekker;
// @ts-ignore
const {clearInputValidity, showInputInvalid, showInputValid} = window.fwdekker.validation;
const {$, doAfterLoad} = (window as any).fwdekker;
const {clearInputValidity, showInputInvalid, showInputValid} = (window as any).fwdekker.validation;
import {DateTime} from "luxon";