ts refactor

This commit is contained in:
2026-04-08 16:44:16 -04:00
parent 2ce04c7bbb
commit 4034ca55cf
12 changed files with 1831 additions and 2 deletions

16
tsconfig.json Normal file
View File

@@ -0,0 +1,16 @@
{
"compilerOptions": {
"target": "ES2022",
"useDefineForClassFields": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"allowJs": false,
"skipLibCheck": true,
"strict": false,
"noEmit": true,
"isolatedModules": true,
"esModuleInterop": true
},
"include": ["src"]
}