feat: adding initial source code

This commit is contained in:
Lucas Oskorep
2025-04-03 02:24:40 -04:00
parent 0ddac224fb
commit c8a453f329
16 changed files with 2603 additions and 1 deletions

21
tsconfig.json Normal file
View File

@@ -0,0 +1,21 @@
{
"compilerOptions": {
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "./dist",
"sourceMap": false,
"strict": true,
"target": "ES2022",
"lib": [
"ES2022"
],
},
"include": [
"ambient.d.ts",
],
"files": [
"extension.ts",
"winGroup.ts",
"prefs.ts"
],
}