fix tsconfig.json

This commit is contained in:
2023-06-29 18:33:00 +02:00
parent 410021ee66
commit 19352ad3dd
2 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
FROM node:16-slim FROM node:18-slim
WORKDIR /app WORKDIR /app
COPY package*.json ./ COPY package*.json ./
RUN npm ci RUN npm ci
COPY . . COPY . .
RUN npm run build RUN npm run build
CMD ["node", "server"] CMD ["node", "server"]

View File

@@ -1,5 +1,5 @@
{ {
"extends": "@vue/tsconfig/tsconfig.node.json", "extends": "@vue/tsconfig/tsconfig.json",
"include": ["vite.config.*", "vitest.config.*", "cypress.config.*", "playwright.config.*"], "include": ["vite.config.*", "vitest.config.*", "cypress.config.*", "playwright.config.*"],
"compilerOptions": { "compilerOptions": {
"composite": true, "composite": true,