15 lines
456 B
JSON
15 lines
456 B
JSON
|
{
|
||
|
"importMap": "./deno.map.json",
|
||
|
"compilerOptions": {
|
||
|
"types": ["./ts/types"],
|
||
|
"lib": ["deno.window", "dom"],
|
||
|
"checkJs": true
|
||
|
},
|
||
|
"tasks": {
|
||
|
"dev": "deno task fmt & deno task serve & deno task test",
|
||
|
"fmt": "deno fmt --watch --no-lock --no-check",
|
||
|
"serve": "deno run -A --unstable --no-lock --no-check https://deno.land/std@0.167.0/http/file_server.ts",
|
||
|
"test": "deno test ts/test.ts --watch --no-lock --no-check"
|
||
|
}
|
||
|
}
|