From b14743906563c8564bfb90a7c1ae2a72c4091f7c Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Thu, 14 Dec 2023 16:31:25 +0000 Subject: [PATCH] chore: update npm tag 20-alpine aldo adds module property with value NodeNext in tsconfig.json --- OliverBooth/Dockerfile | 2 +- tsconfig.json | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/OliverBooth/Dockerfile b/OliverBooth/Dockerfile index b7ed464..52af4ad 100644 --- a/OliverBooth/Dockerfile +++ b/OliverBooth/Dockerfile @@ -3,7 +3,7 @@ WORKDIR /app EXPOSE 80 EXPOSE 443 -FROM node:alpine as build-deps +FROM node:20-alpine as build-deps WORKDIR /src COPY package.json package-lock.json ./ RUN npm i -g gulp-cli diff --git a/tsconfig.json b/tsconfig.json index fca6a56..894c270 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,6 +2,7 @@ "compilerOptions": { "lib": ["ES2022", "DOM"], "target": "ES2022", - "moduleResolution": "nodenext" + "module": "NodeNext", + "moduleResolution": "NodeNext" } } \ No newline at end of file