From e1af5479cdd91274e0b3d8a284ce2be1e7e17376 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Tue, 25 Aug 2026 07:41:40 -0700 Subject: [PATCH] Feat: Add tsconfig for bundler resolution Co-authored-by: gemini-3.7-flash --- tsconfig.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..702b338 --- /dev/null +++ b/tsconfig.json @@ -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"] +}