-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
50 lines (50 loc) · 1002 Bytes
/
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
{
"compilerOptions": {
"allowJs": false,
"strict": true
},
"bench": {
"include": ["benches/"]
},
"lint": {
"include": ["src/"],
"rules": {
"tags": ["recommended"],
"include": ["ban-untagged-todo"],
"exclude": ["no-unused-vars"]
}
},
"fmt": {
"useTabs": true,
"lineWidth": 80,
"indentWidth": 4,
"semiColons": false,
"singleQuote": true,
"proseWrap": "preserve",
"include": ["src/"]
},
"lock": false,
"nodeModulesDir": false,
"test": {
"include": ["src/"]
},
"tasks": {
"build": "./build.sh",
"event": "deno run --allow-read --allow-env --allow-write ./src/event.ts"
},
"imports": {
"@jkomyno/capnp-ts": "npm:@jkomyno/[email protected]",
"http/": "https://deno.land/[email protected]/http/",
"superjson": "npm:[email protected]"
},
"exclude": [
".git",
".vscode",
"rust",
".editorconfig",
".envrc",
".gitignore",
".prettierrc",
"README.md"
]
}