-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
63 lines (63 loc) · 1.22 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"tasks": {
"test": "deno test -A --parallel",
"bench": "deno bench -A",
"format": "deno fmt",
"check": "deno check . ",
"lint": "deno lint",
"update": "deno -A scripts/update.ts",
"publish": "deno publish --allow-slow-types"
},
"workspace": [
"./denograd",
"./website"
],
"nodeModulesDir": "auto",
"fmt": {
"lineWidth": 10000,
"semiColons": false,
"singleQuote": true
},
"lint": {
"rules": {
"exclude": [
"no-explicit-any",
"no-unused-vars",
"prefer-const",
"require-await",
"no-slow-types"
],
"include": [
"verbatim-module-syntax",
"prefer-const",
"ban-types",
"no-class-assign",
"no-compare-neg-zero",
"eqeqeq"
]
}
},
"imports": {
"expect": "jsr:@std/expect",
"assert": "jsr:@std/assert"
},
"exclude": [
"tinygrad*",
"website/.astro*"
],
"compilerOptions": {
"lib": [
"ES2020",
"DOM",
"DOM.Iterable",
"deno.ns"
],
"jsx": "react-jsx",
"jsxImportSource": "react",
"jsxImportSourceTypes": "npm:@types/react",
"types": [
"npm:@types/react",
"npm:@types/react-dom"
]
}
}