chore(extension): apply code formatting and add changeset

- Format all extension files according to project standards
- Add changeset for VS Code extension implementation
- Update package-lock.json dependencies
This commit is contained in:
DavidMaliglowka
2025-07-17 05:07:26 -05:00
parent 8e59647229
commit 8209f8dbcc
32 changed files with 8584 additions and 7268 deletions

View File

@@ -3,13 +3,10 @@
"module": "ESNext",
"target": "ES2022",
"outDir": "out",
"lib": [
"ES2022",
"DOM"
],
"lib": ["ES2022", "DOM"],
"sourceMap": true,
"rootDir": "src",
"strict": true, /* enable all strict type-checking options */
"strict": true /* enable all strict type-checking options */,
"moduleResolution": "Node",
"esModuleInterop": true,
"skipLibCheck": true,
@@ -26,10 +23,5 @@
"@/lib/*": ["./src/lib/*"]
}
},
"exclude": [
"node_modules",
".vscode-test",
"out",
"dist"
]
"exclude": ["node_modules", ".vscode-test", "out", "dist"]
}