starting on the extension

This commit is contained in:
Oliver Atkinson
2024-12-12 15:32:04 -07:00
parent 298ad39a79
commit 611a1e923b
10 changed files with 86 additions and 0 deletions

16
jsconfig.json Normal file
View File

@@ -0,0 +1,16 @@
{
"compilerOptions": {
"module": "ESNext",
"moduleResolution": "Bundler",
"target": "ES2022",
"jsx": "react",
"allowImportingTsExtensions": true,
"strictNullChecks": true,
"strictFunctionTypes": true
},
"exclude": [
"node_modules",
"**/node_modules/*"
],
"typeAcquisition": {"include": ["firefox-webext-browser"]}
}