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/**/*"] -}