-
Notifications
You must be signed in to change notification settings - Fork 5
/
deno.json
38 lines (38 loc) · 1020 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
{
"compilerOptions": {
"lib": [
"deno.ns",
"dom",
"dom.iterable",
"dom.asynciterable",
"esnext"
],
"jsx": "react",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment"
},
"importMap": "./import_map.json",
"fmt": {
"options": {
"singleQuote": true,
"proseWrap": "preserve"
}
},
"lint": {
"files": {
"exclude": ["dist"]
}
},
"tasks": {
"dev": "bext --watch",
"build": "bext",
"test": "deno test -A source",
"test:all": "deno fmt && deno task check:all && deno task test && deno lint",
"test:update": "deno test -A -- --update source",
"check:all": "deno task check:background && deno task check:content_script && deno task check:options && deno task check:popup",
"check:background": "deno check source/background.ts",
"check:content_script": "deno check source/content_script.ts",
"check:options": "deno check source/options.tsx",
"check:popup": "deno check source/popup.tsx"
}
}