-
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Converts everything to typescript, adding `@ts-expect-error`s where necessary. Also makes some progress converting elements to use decorators, but we're not fully there yet — I think it'll make sense to continue to do that in future PRs, rather than doing it all in one go, just so that we can keep up with the dev branch.
- Loading branch information
Showing
28 changed files
with
1,129 additions
and
601 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"recommendations": [ | ||
"dbaeumer.vscode-eslint", | ||
"esbenp.prettier-vscode", | ||
"runem.lit-plugin", | ||
"streetsidesoftware.code-spell-checker" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
{ | ||
"cSpell.languageSettings": [ | ||
{ | ||
"languageId": "typescript", | ||
"allowCompoundWords": true, | ||
"dictionaries": ["typescript", "node", "html", "fonts", "css"] | ||
}, | ||
{ | ||
"languageId": "javascript", | ||
"allowCompoundWords": true, | ||
"dictionaries": ["typescript", "node", "html", "fonts", "css"] | ||
}, | ||
{ | ||
"languageId": "markdown", | ||
"allowCompoundWords": true, | ||
"dictionaries": ["typescript", "node", "html", "fonts", "css"] | ||
} | ||
], | ||
"cSpell.words": [ | ||
"authed", | ||
"browsertrix", | ||
"Bulma", | ||
"canonicalization", | ||
"cdxj", | ||
"Collec", | ||
"colls", | ||
"electronuserland", | ||
"flexsearch", | ||
"gapi", | ||
"gauth", | ||
"gdrive", | ||
"iframes", | ||
"indexeddb", | ||
"inited", | ||
"ipfs", | ||
"ival", | ||
"kiwix", | ||
"ndjson", | ||
"pmarsceill", | ||
"popd", | ||
"pushd", | ||
"pywb", | ||
"reauth", | ||
"recalc", | ||
"replaybase", | ||
"replayweb.page", | ||
"sesh", | ||
"Strs", | ||
"surt", | ||
"svgs", | ||
"swmanager", | ||
"swonly", | ||
"Unfullscreen", | ||
"unrewriting", | ||
"wabac", | ||
"WACZ", | ||
"WARC", | ||
"warcio", | ||
"webrecorder", | ||
"wrlogo" | ||
], | ||
"cSpell.ignorePaths": ["node_modules", ".git", "*.lock", "package.json"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.