-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeno.json
68 lines (68 loc) · 2.12 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
64
65
66
67
68
{
"name": "@zakahacecosas/fuckingnode",
"version": "3.0.0-work-in-progress-lol",
"exports": {
".": "./src/main.ts"
},
"fmt": {
"exclude": ["docs/**"],
"indentWidth": 4,
"lineWidth": 144,
"proseWrap": "never",
"singleQuote": false,
"semiColons": true,
"useTabs": false
},
"tasks": {
"good": {
"description": "Makes the code good by formatting and type-checking it.",
"command": "deno -A tasks/good.ts"
},
"compile": {
"description": "Compiles the CLI",
"command": "deno -A tasks/compile.ts",
"dependencies": ["good"]
},
"test": {
"description": "Runs all tests",
"command": "deno test --allow-all"
}
},
"compilerOptions": {
"strict": true,
"strictBindCallApply": true,
"strictBuiltinIteratorReturn": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"strictNullChecks": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"useUnknownInCatchVariables": true,
"exactOptionalPropertyTypes": true,
"noUnusedLocals": true,
"noUncheckedIndexedAccess": true,
"noUnusedParameters": true,
"noPropertyAccessFromIndexSignature": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"noErrorTruncation": true
},
"exclude": [
"./src/commands/help.ignore.ts"
],
"imports": {
"@std/fs": "jsr:@std/fs@^1.0.10",
"@std/jsonc": "jsr:@std/jsonc@^1.0.1",
"@std/path": "jsr:@std/path@^1.0.8",
"@std/yaml": "jsr:@std/yaml",
"@std/toml": "jsr:@std/toml@^1.0.2",
"@std/testing": "jsr:@std/assert@^1.0.11",
"@std/semver": "jsr:@std/semver",
"@std/assert": "jsr:@std/assert@^1.0.11",
"@zakahacecosas/string-utils": "jsr:@zakahacecosas/string-utils@^1.4.0"
},
"lock": true
}