From 42c4a0e6ecd743cd3bbe2912550ff1b23c561b7d Mon Sep 17 00:00:00 2001 From: wraith4081 Date: Sat, 27 Dec 2025 21:31:23 +0300 Subject: [PATCH] chore(build): remove old webpack & jest files/referances --- Dockerfile | 2 +- eslint.config.js | 2 +- tsconfig.jest.json | 11 ----------- 3 files changed, 2 insertions(+), 13 deletions(-) delete mode 100644 tsconfig.jest.json diff --git a/Dockerfile b/Dockerfile index b5a9cdb1b..2644cd3f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ RUN --mount=type=cache,target=/root/.npm \ # Copy only what's needed for build COPY tsconfig.json ./ -COPY webpack.config.js ./ +COPY vite.config.ts ./ COPY tailwind.config.js ./ COPY postcss.config.js ./ COPY eslint.config.js ./ diff --git a/eslint.config.js b/eslint.config.js index 3d5aac438..c24d0b05c 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -28,7 +28,7 @@ export default [ "eslint.config.js", "postcss.config.js", "tailwind.config.js", - "webpack.config.js", + "vite.config.ts", ], }, tsconfigRootDir: import.meta.dirname, diff --git a/tsconfig.jest.json b/tsconfig.jest.json deleted file mode 100644 index 8a857b933..000000000 --- a/tsconfig.jest.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "extends": "./tsconfig.json", - "compilerOptions": { - "target": "ES2020", - "module": "ESNext", - "moduleResolution": "node", - "experimentalDecorators": true, - "types": ["vitest", "node"] - }, - "include": ["tests/**/*", "src/**/*"] -}