-
Notifications
You must be signed in to change notification settings - Fork 1
/
deno.json
63 lines (63 loc) · 1.33 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
{
"$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json",
"tasks": {
"cache": "deno cache -r cli.ts console/mod.ts error/mod.ts http/mod.ts website/main.ts",
"check": "deno check -r cli.ts console/mod.ts error/mod.ts http/mod.ts website/main.ts",
"test": "deno test -A --no-check --coverage=./cov"
},
"workspace": [
"./console",
"./error",
"./http",
"./http/examples/basic",
"./http/examples/with-routes",
"./http/examples/with-routes-fs",
"./website"
],
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.3",
"@std/cli": "jsr:@std/cli@^1.0.4",
"@std/fs": "jsr:@std/fs@^1.0.2",
"@std/http": "jsr:@std/http@^1.0.4",
"@std/log": "jsr:@std/log@^0.224.6",
"@std/path": "jsr:@std/path@^1.0.3"
},
"fmt": {
"useTabs": true,
"lineWidth": 100
},
"exclude": [
".git",
".deno",
"cov",
"examples",
"docs"
],
"publish": {
"exclude": [
"./**/*_test.ts",
".editorconfig",
".gitattributes",
".github",
"contributing.md",
"examples",
"website",
"docs"
]
},
"compilerOptions": {
"allowJs": false,
"lib": [
"dom",
"dom.iterable",
"dom.asynciterable",
"deno.ns"
],
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"useUnknownInCatchVariables": true
}
}