Clean up esbuilding of extensions

- Make sure we still always type check using `tsgo --noEmit`
- Align names of esbuild files
- Convert all esbuild files to typescript. We use the `.mts` extension to avoid annoying node warnings about using pacakges
This commit is contained in:
Matt Bierner
2026-02-11 14:57:16 -08:00
parent 86aab8a08b
commit 03561955b7
27 changed files with 103 additions and 88 deletions

View File

@@ -0,0 +1,9 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"types": [],
"typeRoots": [
"./node_modules/@types"
]
}
}