-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
63 lines (63 loc) · 1.09 KB
/
deno.json
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"compilerOptions": {
"allowJs": true,
"strict": true
},
"fmt": {
"files": {
"exclude": [
"src/testData/"
],
"include": [
"src/",
"index.ts",
"deps.ts",
"dev_deps.ts",
"deno.json"
]
},
"options": {
"indentWidth": 2,
"lineWidth": 80,
"proseWrap": "preserve",
"singleQuote": true,
"useTabs": false
}
},
"lint": {
"files": {
"exclude": [
"src/testdata/"
],
"include": [
"src/"
]
},
"rules": {
"exclude": [
"no-unused-vars"
],
"include": [
"ban-untagged-todo"
],
"tags": [
"recommended"
]
}
},
"tasks": {
"dev": "deno run -A --watch main.ts",
"init:db": "deno run -A initDatabase.ts",
"run": "deno run --allow-net --allow-env --allow-read main.ts",
"test": "deno test -A -q --parallel",
"test:w": "deno test --watch -A src/test/"
},
"test": {
"files": {
"exclude": [],
"include": [
"src/test/"
]
}
}
}