-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
55 lines (55 loc) · 1.26 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
{
"name": "@pumpn/svg-to-png",
"version": "0.2.2",
"exports": {
".": "./svg-to-png.js",
"./cli": "./scripts/svg-to-png.js"
},
"tasks": {
"svg-to-png": "deno run -A ./scripts/svg-to-png.js",
"lint": "npx [email protected]"
},
"imports": {
"@astral/astral": "jsr:@astral/astral@^0.5.2",
"@cliffy/command": "jsr:@cliffy/command@^1.0.0-rc.7",
"@radashi-org/radashi": "jsr:@radashi-org/radashi@^12.3.3",
"@std/path": "jsr:@std/path@^1.0.8"
},
"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,
"strict": true,
"lib": [
"dom",
"dom.iterable",
"dom.asynciterable",
"deno.ns",
"deno.unstable"
]
}
}