feat: adding in support for typescript code completion to the gnome extension.js

This commit is contained in:
Lucas Oskorep
2024-11-08 02:41:48 -05:00
parent 7de3adfaee
commit 784051afca
6 changed files with 1900 additions and 57 deletions
+20
View File
@@ -0,0 +1,20 @@
{
"compilerOptions": {
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "./dist",
"sourceMap": false,
"strict": true,
"target": "ES2022",
"lib": [
"ES2022"
],
},
"include": [
"ambient.d.ts",
],
"files": [
"extension.ts",
"prefs.ts"
],
}