diff --git a/admin_app/Dockerfile b/admin_app/Dockerfile index 4ac2b33fb..78a9b59c2 100644 --- a/admin_app/Dockerfile +++ b/admin_app/Dockerfile @@ -5,7 +5,7 @@ RUN apk add --no-cache libc6-compat WORKDIR /app COPY package.json package-lock.json ./ -RUN npm ci --include=dev +RUN npm ci FROM base AS builder WORKDIR /app diff --git a/admin_app/tsconfig.json b/admin_app/tsconfig.json index 57f5e3d12..cf291a38c 100644 --- a/admin_app/tsconfig.json +++ b/admin_app/tsconfig.json @@ -21,6 +21,6 @@ "@/*": ["./src/*"] } }, - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "src", ".next/types/**/*.ts"], + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "**/*.ts", ".next/types/**/*.ts"], "exclude": ["node_modules"] }