feat: integrate linkedom for DOM manipulation

Adds `linkedom` as a dependency for parsing HTML and manipulating the DOM. This enables scraping capabilities.
This commit is contained in:
2025-09-17 18:48:23 -04:00
parent 3fccbb7a46
commit 030e3c302d
4 changed files with 39 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
{
"compilerOptions": {
// Environment setup & latest features
"lib": ["ESNext"],
"lib": ["dom"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
@@ -19,6 +19,7 @@
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitAny": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,