-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
deno.jsonc
34 lines (34 loc) · 822 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
31
32
33
34
{
"compilerOptions": {
"allowJs": true,
"strict": true
},
"lint": {
"rules": {
"tags": [
"recommended"
]
}
},
"fmt": {
"options": {
"useTabs": false,
"lineWidth": 80,
"indentWidth": 4,
"singleQuote": true,
"proseWrap": "never"
},
"files": {
"exclude": [
".github/"
]
}
},
"tasks": {
"start": "deno run --allow-net --allow-read --allow-env index.ts",
"dev": "export DEV=true && deno run --allow-net --allow-read --allow-env --watch index.ts",
"test": "deno task test:lint",
"test:lint": "deno fmt --check",
"lint:fix": "deno fmt && deno lint"
}
}