-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
35 lines (35 loc) · 745 Bytes
/
deno.json
File metadata and controls
35 lines (35 loc) · 745 Bytes
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
35
{
"tasks": {
"dev": "deno run -A --watch src/server.ts",
"start": "deno run -A src/server.ts",
"lint": "deno lint src/",
"fmt": "deno fmt src/",
"test": "deno test --allow-all",
"check": "deno check src/server.ts"
},
"compilerOptions": {
"strict": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitOverride": true
},
"fmt": {
"useTabs": false,
"lineWidth": 100,
"indentWidth": 2,
"singleQuote": false,
"proseWrap": "preserve"
},
"lint": {
"rules": {
"tags": ["recommended"],
"include": ["ban-untagged-todo"],
"exclude": ["no-unused-vars"]
}
},
"exclude": [
"node_modules/",
"dist/"
]
}