-
Notifications
You must be signed in to change notification settings - Fork 8
/
deno.jsonc
55 lines (55 loc) · 1.11 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@edjopato/telegram-format",
"version": "3.1.0",
"exports": "./source/mod.ts",
"lock": false,
// https://deno.land/manual/advanced/typescript/configuration
// https://www.typescriptlang.org/tsconfig/
"compilerOptions": {
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"useUnknownInCatchVariables": true
},
"exclude": [
"./coverage/",
"./dist/",
"./docs/",
"./node_modules/"
],
"fmt": {
"useTabs": true
},
"lint": {
"rules": {
// https://lint.deno.land/?all=on
"include": [
"default-param-last",
"eqeqeq",
"explicit-module-boundary-types",
"no-await-in-loop",
"no-eval",
"no-non-null-asserted-optional-chain",
"no-non-null-assertion",
"no-sparse-arrays"
]
}
},
"publish": {
"include": [
"deno.json*",
"LICENSE*",
"README*",
"source"
],
"exclude": [
"**/*.test.*",
"**/test.*"
]
},
"tasks": {
"coverage": "deno test --coverage=coverage/ && deno coverage coverage/",
"doc": "deno doc --html --name=telegram-format source/mod.ts"
}
}