chore(*): Add js project

This commit is contained in:
Josh Creek
2024-12-01 11:20:14 +00:00
parent 9d53354d14
commit ef22a0fe6c
3 changed files with 3673 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
module.exports = {
testEnvironment: "node",
roots: ["<rootDir>"],
moduleNameMapper: {
"^Data/(.*)$": "<rootDir>/2024/Data/$1",
"^Tasks/(.*)$": "<rootDir>/2024/Tasks/$1",
},
};
+3652
View File
File diff suppressed because it is too large Load Diff
+13
View File
@@ -0,0 +1,13 @@
{
"name": "advent-of-code",
"version": "1.0.0",
"description": "A set of node.js solutions for advent of code",
"scripts": {
"test": "jest"
},
"author": "",
"license": "ISC",
"devDependencies": {
"jest": "^29.7.0"
}
}