-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdeno.json
More file actions
42 lines (41 loc) · 891 Bytes
/
deno.json
File metadata and controls
42 lines (41 loc) · 891 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
36
37
38
39
40
41
42
{
"compilerOptions": {
"types": ["npm:@types/chrome", "npm:@types/firefox-webext-browser"],
"lib": ["dom", "dom.iterable", "dom.asynciterable", "deno.ns"],
"strict": true
},
"exclude": ["tmp/"],
"lint": {
"include": [
"src/",
"tests/",
"build.ts",
"public/*.html"
],
"rules": {
"tags": ["recommended"],
"exclude": ["no-window"]
}
},
"fmt": {
"useTabs": false,
"lineWidth": 80,
"indentWidth": 2,
"semiColons": true,
"singleQuote": true,
"proseWrap": "preserve",
"include": [
"src/",
"tests/",
"public/*.html",
"build.ts",
"*.json"
]
},
"imports": {
"esbuild": "npm:esbuild@0.27.3",
"esbuild-plugin-vue-iii": "npm:esbuild-plugin-vue-iii@0.5.0",
"@std/expect": "jsr:@std/expect@1.0.18",
"@std/testing": "jsr:@std/testing@1.0.17"
}
}