diff --git a/Dockerfile b/Dockerfile index bb81005..3ea6e82 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ -FROM node:16-slim +FROM node:18-slim WORKDIR /app COPY package*.json ./ RUN npm ci COPY . . RUN npm run build -CMD ["node", "server"] \ No newline at end of file +CMD ["node", "server"] diff --git a/tsconfig.config.json b/tsconfig.config.json index 424084a..9f5a302 100644 --- a/tsconfig.config.json +++ b/tsconfig.config.json @@ -1,5 +1,5 @@ { - "extends": "@vue/tsconfig/tsconfig.node.json", + "extends": "@vue/tsconfig/tsconfig.json", "include": ["vite.config.*", "vitest.config.*", "cypress.config.*", "playwright.config.*"], "compilerOptions": { "composite": true,