-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.jsonc
43 lines (43 loc) · 1.13 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
{
"compilerOptions": {
"strict": true,
"exactOptionalPropertyTypes": true,
"useUnknownInCatchVariables": true,
"noImplicitOverride": true,
"noUncheckedIndexedAccess": true
},
"exclude": [".git", ".github", "vendor"],
"fmt": {
"useTabs": true,
"lineWidth": 120,
"semiColons": false,
"singleQuote": true,
"exclude": ["**/*.md", "**/*.yml", "**/*.yaml"]
},
"tasks": {
"check": "deno fmt --check && deno lint && biome lint",
"dry-run": "deno publish --dry-run",
"test": "deno test --allow-sys --allow-env --clean --coverage",
"update": "deno outdated --update --latest"
},
"lint": {
"rules": {
"include": [
"camelcase",
"no-sync-fn-in-async-fn",
"single-var-declarator",
"verbatim-module-syntax",
"no-console"
]
},
"exclude": ["**/*.md", "**/*.yml", "**/*.yaml"]
},
"workspace": ["./check-required-env", "./crypto", "./dates", "./logger", "./storage-s3"],
"imports": {
"@biomejs/biome": "npm:@biomejs/biome@^1.9.4",
"@types/node": "npm:@types/node@^22.10.5",
"@cross/test": "jsr:@cross/test@^0.0.10",
"@std/assert": "jsr:@std/assert@^1.0.10",
"sinon": "npm:sinon@^19.0.2"
}
}