Complete TypeScript frontend migration #22

Merged
sjg merged 51 commits from feat/typescript-frontend-migration into main 2026-08-01 23:06:19 +02:00
2 changed files with 1 additions and 5 deletions
Showing only changes of commit ee59d8efdd - Show all commits
@@ -10,8 +10,6 @@ export default tseslint.config(
{
ignores: [
"../assets/web/generated/**",
// Removed file-by-file as the legacy sources are converted to TypeScript.
"src/**/*.js",
],
},
{
@@ -7,12 +7,10 @@
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"useUnknownInCatchVariables": true,
"allowJs": true,
"checkJs": false,
"noEmit": true,
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"types": []
},
"include": ["src/**/*.ts", "src/**/*.js"],
"include": ["src/**/*.ts"],
"exclude": ["src/decode-history-worker.ts"]
}