normalize more TS configs

This commit is contained in:
Hazelnoot 2025-09-30 20:11:59 -04:00
parent d135f09a60
commit 457fc38e6a
5 changed files with 16 additions and 9 deletions

View file

@ -1,9 +1,10 @@
{
"compilerOptions": {
"lib": ["dom", "es5"],
"target": "es5",
"lib": ["dom", "ES2022"],
"target": "ES2022",
"types": ["cypress", "node"],
"incremental": true
"incremental": true,
"skipLibCheck": true,
},
"include": ["./**/*.ts"]
}