-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
41 lines (41 loc) · 1010 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
{
"name": "@globalbrain/hado",
"version": "0.8.0",
"exports": {
"./router": "./src/router.ts",
"./utils": "./src/utils.ts"
},
"publish": {
"include": [
"*.md",
"deps.ts",
"src/**/*.ts"
]
},
"compilerOptions": {
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true
},
"tasks": {
"format": "deno fmt",
"format:fail": "deno fmt --check",
"lint": "deno lint --fix",
"lint:fail": "deno lint",
"test": "deno test -A",
"test:watch": "deno test -A --watch",
"type": "deno check **/*.ts",
"check": "deno task format:fail && deno task lint:fail && deno task type && deno task test",
"release": "deno run -A ./scripts/release.ts",
"update": "deno run -A ./scripts/update.ts"
},
"fmt": {
"lineWidth": 120,
"proseWrap": "preserve",
"semiColons": false,
"singleQuote": true
},
"imports": {}
}