File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed
Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff 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
2626These 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
3535I used the following libraries/packages in addition to the runtime APIs part of Deno.
Original file line number Diff line number Diff line change 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}
You can’t perform that action at this time.
0 commit comments