-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
47 lines (47 loc) · 1.21 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
{
"name": "@patina/core",
"version": "4.0.0",
"compilerOptions": {
"strict": true,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true
},
"fmt": {
"useTabs": true,
"lineWidth": 100,
"indentWidth": 4
},
"lint": {
"include": ["src/**/*.ts", "test/**/*.ts"],
"rules": {
"include": ["explicit-function-return-type", "explicit-module-boundary-types"],
"exclude": ["no-explicit-any"]
}
},
"tasks": {
"build:npm": "deno run -A scripts/build_npm.ts",
"check": "deno check src/**/*.ts",
"lint": "deno lint --fix",
"format": "deno fmt",
"test": "deno test",
"fix": "deno run format && deno run lint && deno run check"
},
"imports": {
"@deno/dnt": "jsr:@deno/dnt@^0.41.3",
"@std/testing": "jsr:@std/testing@1.0.4",
"@std/expect": "jsr:@std/expect@1.0.7",
"expect-type": "npm:expect-type@1.1.0"
},
"exports": "./src/mod.ts",
"publish": {
"include": ["src/**/*.ts", "package.json", "README.md", "LICENSE"]
}
}