chore(build): remove old webpack & jest files/referances

This commit is contained in:
wraith4081
2025-12-27 21:31:23 +03:00
parent 8a65f3c617
commit 42c4a0e6ec
3 changed files with 2 additions and 13 deletions
+1 -1
View File
@@ -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 ./
+1 -1
View File
@@ -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,
-11
View File
@@ -1,11 +0,0 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "node",
"experimentalDecorators": true,
"types": ["vitest", "node"]
},
"include": ["tests/**/*", "src/**/*"]
}