Feat: Add tsconfig for bundler resolution

Co-authored-by: gemini-3.7-flash <noreply@google.com>
This commit is contained in:
2026-08-25 07:41:40 -07:00
parent f55e3764e9
commit e1af5479cd

14
tsconfig.json Normal file
View File

@@ -0,0 +1,14 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"allowJs": true,
"checkJs": false,
"strict": true,
"noEmit": true,
"skipLibCheck": true
},
"include": ["*.ts", "*.js"]
}