-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
31 lines (31 loc) · 1.31 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
{
"compilerOptions": {
"exactOptionalPropertyTypes": true,
"experimentalDecorators": true,
"noImplicitOverride": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true
},
"exclude": ["dist"],
"fmt": { "semiColons": false, "singleQuote": true },
"imports": {
"marked": "https://deno.land/x/[email protected]/mod.ts",
"npm:@lit-labs/ssr": "npm:@lit-labs/[email protected]",
"npm:lit": "npm:[email protected]",
"npm:lit-analyzer": "npm:[email protected]",
"std/": "https://deno.land/[email protected]/"
},
"lint": { "rules": { "exclude": ["no-inferrable-types"] } },
"lock": false,
"tasks": {
"build": "src/mod.ts",
"clean": "rm -rf dist",
"start": "tools/build --watch",
"test": "deno task test:types && deno task test:unit && deno lint && deno fmt --check && deno task test:ui && deno task build",
"test:types": "deno check src/mod.ts",
"test:ui": "deno run --allow-read --allow-sys npm:lit-analyzer --maxWarnings=0 --rules.no-missing-element-type-definition --rules.no-unknown-event --strict",
"test:unit": "deno test --allow-read=. --reporter=dot",
"watch": "deno task build; watchexec --ignore='dist/*' --postpone 'deno task build'& deno run --allow-env --allow-net --allow-read --allow-run --allow-sys npm:[email protected] dist&"
}
}