-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeno.jsonc
30 lines (30 loc) · 855 Bytes
/
deno.jsonc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"compilerOptions": {
"allowJs": true,
"jsx": "react-jsx",
"jsxImportSource": "preact",
"jsxFactory": "React.createElement",
"jsxFragmentFactory": "React.Fragment",
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedLocals": false,
"strict": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"useUnknownInCatchVariables": true,
"noFallthroughCasesInSwitch": true,
"noStrictGenericChecks": true
},
"tasks": {
"fmt": "dprint fmt",
"deploy": "./tasks/deploy.ts",
"scrape-beer-labels": "./tasks/scrape-beer-labels.ts",
"fetch-recent-checkins": "./tasks/fetch-recent-checkins.ts",
"update-nomadlist-trips": "./tasks/update-nomadlist-trips.ts"
},
"fmt": {
"lineWidth": 120
}
}