AOC2022/deno.json

33 lines
770 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-03 10:28:06 +01:00
"Day03": "cd ./src/03_RucksackReorganization && deno run --allow-read=./input.txt RucksackReorganization.ts"
2022-12-02 11:42:44 +01:00
}
}