-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.jsonc
39 lines (39 loc) · 960 Bytes
/
deno.jsonc
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
{
"exports": {
"./builtins": "./builtins/mod.ts",
"./itertools": "./itertools/mod.ts",
"./functools": "./functools/mod.ts",
"./functoolz": "./functoolz/mod.ts"
},
"lint": {
"rules": {
"exclude": [
"no-explicit-any"
],
"include": [
"eqeqeq",
"explicit-function-return-type",
"explicit-module-boundary-types",
"guard-for-in",
"no-await-in-loop",
"no-console",
"no-const-assign",
"no-eval",
"no-external-import",
"no-implicit-declare-namespace-export",
"no-inferrable-types",
"no-non-null-asserted-optional-chain",
"no-non-null-assertion",
"no-self-compare",
"no-sparse-arrays",
"no-throw-literal",
"no-undef",
"prefer-ascii",
"single-var-declarator",
"triple-slash-reference"
]
}
},
"name": "@summer/pyrolysis",
"version": "0.10.0"
}