From 19191eac7c1e5413b48cf82852789853953368ec Mon Sep 17 00:00:00 2001 From: SrJuggernaut Date: Mon, 9 Mar 2026 12:19:27 -0600 Subject: [PATCH] chore: move vite-tsconfig-paths to dependencies Moved vite-tsconfig-paths from devDependencies to dependencies as it is required at runtime for path resolution in the Vite build. --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index bae3434..9a1934c 100644 --- a/package.json +++ b/package.json @@ -18,8 +18,7 @@ "@types/react-dom": "^19.2.3", "husky": "^9.1.7", "lint-staged": "^16.3.2", - "vite": "^7.3.1", - "vite-tsconfig-paths": "^6.1.1" + "vite": "^7.3.1" }, "peerDependencies": { "typescript": "^5.9.3" @@ -36,6 +35,7 @@ "@tanstack/react-start": "^1.166.3", "@vitejs/plugin-react-swc": "^4.2.3", "react": "^19.2.4", - "react-dom": "^19.2.4" + "react-dom": "^19.2.4", + "vite-tsconfig-paths": "^6.1.1" } }