-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
32 lines (32 loc) · 943 Bytes
/
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
{
"name": "@iv/themes",
"version": "1.0.2",
"exports": "./mod.ts",
"compilerOptions": {
"strict": true,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"verbatimModuleSyntax": true,
"lib": [
"DOM",
"ESNext"
]
},
"tasks": {
"build": "rm -rf dist && mkdir dist && deno bundle mod.ts > dist/main.js",
"test": "rm -rf coverage && deno test --allow-read --coverage=coverage && deno coverage coverage --html",
"site": "deno run -A npm:sirv-cli/sirv site --dev"
},
"imports": {
"@b-fuze/deno-dom": "jsr:@b-fuze/deno-dom@^0.1.47",
"@std/assert": "jsr:@std/assert@^0.226.0"
}
}