AOC2022/deno.json

35 lines
956 B
JSON
Raw Normal View History

2022-12-02 11:42:44 +01:00
{
"compilerOptions": {
"allowJs": false,
"strict": true,
},
"fmt": {
"files": {
"include": ["src/"],
},
"options": {
"useTabs": false,
"lineWidth": 120,
"indentWidth": 2,
"singleQuote": true,
"proseWrap": "preserve"
}
},
"lint": {
"files": {
"include": ["src/"],
},
"rules": {
"tags": ["recommended"],
"include": ["camelcase", "eqeqeq"]
}
},
"tasks": {
"Day01": "cd ./src/01_Calories && deno run --allow-read=./input.txt Calories.ts",
"Day02": "cd ./src/02_RockPaperScissors && deno run --allow-read=./input.txt RockPaperScissors.ts",
2022-12-05 17:02:04 +01:00
"Day03": "cd ./src/03_RucksackReorganization && deno run --allow-read=./input.txt RucksackReorganization.ts",
2022-12-05 17:04:58 +01:00
"Day04": "cd ./src/04_CampCleanup && deno run --allow-read=./input.txt CampCleanup.ts",
"Day05": "cd ./src/05_SupplyStacks && deno run --allow-read=./input.txt SupplyStacks.ts"
2022-12-02 11:42:44 +01:00
}
}