feat!: re-write to TypeScript

Co-authored-by: Evo <85353424+EvolutionX-10@users.noreply.github.com>
This commit is contained in:
Tofix.js
2022-09-13 06:35:02 +02:00
committed by GitHub
parent 9271da3076
commit bed31c1f49
22 changed files with 193 additions and 215 deletions

View File

@@ -0,0 +1,11 @@
FROM node:latest
WORKDIR /app
COPY package.json ./
RUN npm install
COPY . .
RUN node src/index.js

View File

@@ -0,0 +1,13 @@
FROM node:latest
WORKDIR /app
COPY package.json ./
RUN npm install
COPY . .
RUN tsc --build
RUN node dist/index.js