-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdeno.json
41 lines (40 loc) · 892 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
{
"compilerOptions": {
"types": ["npm:@types/chrome", "npm:@types/firefox-webext-browser"],
"lib": ["dom", "dom.iterable", "dom.asynciterable", "deno.ns"],
"strict": true
},
"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": "https://deno.land/x/[email protected]/mod.js",
"esbuild-plugin-vue-iii": "npm:[email protected]",
"@std/expect": "jsr:@std/[email protected]",
"@std/testing": "jsr:@std/[email protected]"
}
}