Day 01&02
This commit is contained in:
commit
a3fefe26a6
6 changed files with 4836 additions and 0 deletions
31
deno.json
Normal file
31
deno.json
Normal file
|
@ -0,0 +1,31 @@
|
|||
{
|
||||
"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",
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue