REPASO GENERAL ADAPTAR A DOCKERS

This commit is contained in:
David Arranz 2025-11-04 21:53:50 +01:00
parent 810fb71705
commit da15e9d44d
4 changed files with 6 additions and 8 deletions

View File

@ -20,6 +20,8 @@
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.3",
"@vitejs/plugin-react": "^4.4.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"typescript": "~5.8.3",
"vite": "^6.3.5"
},
@ -31,13 +33,11 @@
"@repo/rdx-ui": "workspace:*",
"@repo/shadcn-ui": "workspace:*",
"@tailwindcss/vite": "^4.1.11",
"@tanstack/react-query": "^5.74.11",
"@tanstack/react-query": "^5.90.6",
"axios": "^1.9.0",
"dinero.js": "^1.9.1",
"i18next": "^25.0.2",
"i18next-browser-languagedetector": "^8.1.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-error-boundary": "^6.0.0",
"react-hook-form": "^7.56.4",
"react-i18next": "^15.0.1",

View File

@ -28,5 +28,5 @@
"allowUnreachableCode": true
},
"include": ["src"],
"exclude": ["node_modules"]
"exclude": ["node_modules", "dist"]
}

View File

@ -1,9 +1,6 @@
{
"files": [],
"references": [
{ "path": "./tsconfig.app.json" },
{ "path": "./tsconfig.node.json" }
],
"references": [{ "path": "./tsconfig.app.json" }, { "path": "./tsconfig.node.json" }],
"compilerOptions": {
"baseUrl": ".",
"paths": {

View File

@ -10,6 +10,7 @@ export default defineConfig({
},
plugins: [react(), tailwindcss()],
resolve: {
dedupe: ["react", "react-dom"],
alias: {
"@": path.resolve(__dirname, "./src"),
},