Skip to content

Commit 28db522

Browse files
committed
Update and prep for 2024
1 parent b9281fe commit 28db522

File tree

4 files changed

+37
-31
lines changed

4 files changed

+37
-31
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ node_modules
33

44
**/*.js
55
**/*.txt
6+
**/input.*
67

78
.aoc_tiles/*
89
!.aoc_tiles/tiles/

package-lock.json

+28-23
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
"description": "",
55
"main": "index.js",
66
"scripts": {
7-
"lint": "prettier -w src/*.ts",
8-
"run": "tsc -p tsconfig.json && node build/day25.js"
7+
"lint": "prettier -w src/**/*.ts",
8+
"run": "tsc -p tsconfig.json && node build/day1.js"
99
},
1010
"author": "",
1111
"license": "ISC",
1212
"devDependencies": {
13-
"@tsconfig/node20": "^20.1.2",
14-
"@types/node": "^20.10.4",
15-
"prettier": "^3.1.0",
16-
"typescript": "^5.3.3"
13+
"@tsconfig/node22": "^22.0.0",
14+
"@types/node": "^22.10.1",
15+
"prettier": "^3.4.1",
16+
"typescript": "^5.7.2"
1717
},
1818
"dependencies": {
1919
"heap-js": "^2.2.0"

tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "@tsconfig/node20/tsconfig.json",
3-
"include": ["src/**/*"],
2+
"extends": "@tsconfig/node22/tsconfig.json",
3+
"include": ["src/2024/*"],
44
"compilerOptions": { "outDir": "build" }
55
}

0 commit comments

Comments
 (0)