14 lines
386 B
JSON
14 lines
386 B
JSON
{
|
|
"tasks": {
|
|
"typecheck": "deno check **/*.js **/*.ts",
|
|
"check-all": "deno fmt --check && deno lint && deno task typecheck && deno test --allow-read"
|
|
},
|
|
"imports": {
|
|
"assert": "https://deno.land/std@0.196.0/testing/asserts.ts",
|
|
"mock": "https://deno.land/std@0.196.0/testing/mock.ts"
|
|
},
|
|
"compilerOptions": {
|
|
"lib": ["deno.ns", "dom", "dom.iterable"]
|
|
}
|
|
}
|