generated from pumpncode/template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
59 lines (59 loc) · 1.48 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
{
"tasks": {
"knip": "npx knip",
"lint": "npx eslint@9.14.0",
"create-base": "deno run -A ./scripts/create-base.js",
"generate-variants": "deno run -A ./scripts/generate-variants.js",
"convert-to-png": "deno run -A ./scripts/convert-to-png.js",
"process": "sh -c 'deno task generate-variants \"$@\" && deno task convert-to-png \"$@\"' sh"
},
"fmt": {
"options": {
"useTabs": true,
"indentWidth": 1,
"singleQuote": false,
"lineWidth": 80,
"proseWrap": "never",
"semiColons": true
}
},
"nodeModulesDir": "none",
"compilerOptions": {
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"checkJs": true,
"exactOptionalPropertyTypes": true,
"jsx": "react-jsx",
"jsxImportSource": "preact",
"noErrorTruncation": true,
"noFallthroughCasesInSwitch": false,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noPropertyAccessFromIndexSignature": false,
"noUncheckedIndexedAccess": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"strictNullChecks": true,
"strict": true,
"strictPropertyInitialization": false,
"lib": [
"dom",
"dom.iterable",
"dom.asynciterable",
"deno.ns",
"deno.unstable"
]
},
"unstable": [
"temporal",
"kv"
],
"imports": {
"@astral/astral": "jsr:@astral/astral@^0.5.2",
"@pumpn/svg-to-png": "jsr:@pumpn/svg-to-png@^0.2.2",
"@radashi-org/radashi": "jsr:@radashi-org/radashi@^12.3.4",
"@std/path": "jsr:@std/path@^1.0.8"
}
}