Add DOM lib for browser code, add package-lock.json

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
ValueOn AG 2026-02-13 22:57:14 +01:00
parent dced747666
commit 859ffc11f2
2 changed files with 5208 additions and 2 deletions

5205
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -2,7 +2,7 @@
"compilerOptions": {
"target": "ES2022",
"module": "commonjs",
"lib": ["ES2022"],
"lib": ["ES2022", "DOM"],
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
@ -12,7 +12,8 @@
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true
"sourceMap": true,
"noImplicitAny": false
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]