Binge of (mostly) mindless tsification (#6838)

Turned on `noImplicitAny` in tsconfig, then went around fixing some
random easy stuff.
Hopefully tsification-PRs with more real content coming up.
This commit is contained in:
Ofek
2024-09-07 14:36:43 +03:00
committed by GitHub
parent 78e075f197
commit 9ef46fbafe
98 changed files with 336 additions and 189 deletions

View File

@@ -39,7 +39,7 @@ import {WebpackManifestPlugin} from 'webpack-manifest-plugin';
const __dirname = path.resolve(path.dirname(fileURLToPath(import.meta.url)));
const isDev = process.env.NODE_ENV !== 'production';
function log(message) {
function log(message: string) {
// eslint-disable-next-line no-console
console.log('webpack: ' + message);
}