Enable TS noImplicitAny in web (#31636)

GitOrigin-RevId: 18881694770f2476c475f8fef4c6a2678a2a12fe
This commit is contained in:
Anna Claire Fields
2026-03-26 13:53:59 +01:00
committed by Copybot
parent b3489a6792
commit 6113c6c291
58 changed files with 1423 additions and 281 deletions

View File

@@ -45,7 +45,7 @@ if (!settingsExist) {
console.warn("No settings or defaults found. I'm flying blind.")
}
module.exports = settings
module.exports = /** @type {any} */ (settings)
function pathIfExists(path) {
if (path && fs.existsSync(path)) {