From 6534abdd200b1a10382f65aceb71ec72ee2c1fa1 Mon Sep 17 00:00:00 2001 From: Tyler Dixon Date: Tue, 7 Jul 2026 14:14:49 -0700 Subject: [PATCH] chore: migrate moduleResolution from node to bundler, remove ignoreDeprecations --- tsconfig.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 9ed6d34b..7cb9a9dd 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -21,8 +21,7 @@ // noUnused* overlap with @typescript-eslint/no-unused-vars, can disable if duplicative "noUnusedLocals": true, "noUnusedParameters": true, - "moduleResolution": "node", - "ignoreDeprecations": "6.0", + "moduleResolution": "bundler", // transpile JSX to React.createElement "jsx": "react", // interop between ESM and CJS modules. Recommended by TS