-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathdeno.json
More file actions
40 lines (40 loc) · 780 Bytes
/
deno.json
File metadata and controls
40 lines (40 loc) · 780 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
{
"compilerOptions": {
"lib": [
"dom",
"esnext",
"deno.ns"
],
"jsx": "react-jsx",
"jsxImportSource": "mono-jsx"
},
"nodeModulesDir": "none",
"imports": {
"mono-jsx/jsx-runtime": "./jsx-runtime.ts"
},
"tasks": {
"build": "deno run -A --no-lock build.ts",
"test": "deno task build && deno test -A --no-lock test/",
"fmt": "dprint fmt"
},
"lint": {
"exclude": [
"**/*.mjs"
],
"rules": {
"exclude": [
"ban-ts-comment",
"ban-types",
"jsx-curly-braces",
"jsx-key",
"no-import-prefix",
"no-empty-interface",
"no-explicit-any",
"no-slow-types",
"no-this-alias",
"no-window",
"prefer-const"
]
}
}
}