-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
deno.json
46 lines (46 loc) · 922 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
42
43
44
45
46
{
"importMap": "import_map.json",
"compilerOptions": {
"lib": [
"dom",
"dom.iterable",
"dom.asynciterable",
"dom.extras",
"deno.ns",
"deno.unstable"
],
"types": [
"./types.d.ts"
],
"jsx": "react",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
"jsxImportSource": "preact"
},
"fmt": {
"files": {
"exclude": [
"static",
"./{.vscode,.devcontainer,.gitpod.yml,.git*,.env*}",
"README.md"
]
}
},
"lint": {
"rules": {
"exclude": [
"no-explicit-any",
"import-prefix-missing",
"no-bad-types",
"no-empty-interface",
"ban-types",
"ban-ts-comment"
]
}
},
"tasks": {
"dev": "deno run -A --unstable --watch=. main.tsx",
"preview": "deno run --allow-net --allow-env main.tsx",
"test": "deno test -A --unstable"
}
}