1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2025-05-18 12:02:53 +02:00

build(deps): update latest

This commit is contained in:
2023-08-21 22:09:24 +02:00
parent d73ae4dd07
commit 5b3048f305
7 changed files with 199 additions and 196 deletions

View File

@ -1,4 +1,4 @@
FROM dart:3.0.7 AS builder
FROM dart:3.1.0 AS builder
WORKDIR /usr/src/application
COPY ./ ./
RUN dart compile exe solution.dart -o solution

View File

@ -1,9 +1,9 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"module": "NodeNext",
"lib": ["ESNext"],
"moduleResolution": "Node",
"moduleResolution": "NodeNext",
"outDir": "./build",
"rootDir": "./",
"strict": true,