-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.json
More file actions
66 lines (66 loc) · 1.11 KB
/
Copy pathdeno.json
File metadata and controls
66 lines (66 loc) · 1.11 KB
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
64
65
66
{
"lock": false,
"tasks": {
"start": "deno run -A index.ts --port 8000",
"dev": "deno run -A --watch index.ts --port 8000",
"test": "deno test -A src/tests/tests.ts",
"format": "deno fmt ."
},
"compilerOptions": {
"lib": [
"dom",
"dom.iterable",
"esnext",
"deno.ns"
],
"strict": true,
"checkJs": true,
"types": [
"./src/types/types.d.ts"
]
},
"fmt": {
"useTabs": true,
"lineWidth": 80,
"indentWidth": 4,
"semiColons": true,
"singleQuote": true,
"proseWrap": "preserve",
"include": [
"src/",
"*.*"
],
"exclude": [
"src/testdata/",
"src/fixtures/**/*.ts"
]
},
"lint": {
"include": [
"src/",
"*.*"
],
"exclude": [
"src/testdata/",
"src/fixtures/**/*.ts"
],
"rules": {
"tags": [
"recommended"
],
"include": [
"ban-untagged-todo"
],
"exclude": [
"no-unused-vars"
]
}
},
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.19",
"@std/http": "jsr:@std/http@^1.1.2",
"@std/testing": "jsr:@std/testing@^1.0.19",
"node-html-parser": "npm:node-html-parser@^9.0.0",
"rss-parser": "npm:rss-parser@^3.13.0"
}
}