Skip to content

Commit 3095b8a

Browse files
committed
Upgrade to Deno 2.3.1
1 parent 8bfe625 commit 3095b8a

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

typescript/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ sh solve.sh 31 32 33
2121

2222
## Notes
2323

24-
Caution: These solutions aren't good examples for programming because I'm a JavaScript/TypeScript newbie.
24+
Caution: These solutions aren't good examples for learning programming because I'm new to JavaScript/TypeScript.
2525

2626
These solutions were confirmed to work in the following version.
2727

2828
```console
2929
$ deno --version
30-
deno 2.2.2 (stable, release, aarch64-unknown-linux-gnu)
31-
v8 13.4.114.9-rusty
32-
typescript 5.7.3
30+
deno 2.3.1 (stable, release, aarch64-unknown-linux-gnu)
31+
v8 13.5.212.10-rusty
32+
typescript 5.8.3
3333
```
3434

3535
I used the following libraries/packages in addition to the runtime APIs part of Deno.

typescript/euler/deno.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@
77
},
88
"tasks": {
99
"solver": "deno run --quiet --allow-read ./main.ts",
10-
"test": "deno test --allow-read ./test/"
10+
"test": "deno test --allow-read ./test/",
11+
"check": "deno check .",
12+
"format": "deno fmt --check ."
13+
},
14+
"compilerOptions": {
15+
"erasableSyntaxOnly": true
1116
}
1217
}

0 commit comments

Comments
 (0)