-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeno.jsonc
31 lines (29 loc) · 870 Bytes
/
deno.jsonc
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
/**
* Deno Config File
* - jsonc = JSON with comments
* - can be expanded as needed to configure integrated tsc, linter and formatter
*/
{
/**
* TS Compiler Options
*/
"compilerOptions": {
"strict": true
},
/**
* IMPORTANT: Only use import_map.json for testing dependencies,
since it will not be resolved when mod.ts is used as library from outside!
*/
"importMap": "import_map.json",
/**
* Docs for Deno Tasks: https://deno.land/manual@v1.27.1/tools/task_runner
*/
"tasks": {
"start": "deno run --unstable example/main.ts",
"test": "deno test -A --unstable test",
"test-watch": "deno test -A --unstable --watch test",
"esm:add": "deno run -A https://esm.sh/v129 add",
"esm:update": "deno run -A https://esm.sh/v129 update",
"esm:remove": "deno run -A https://esm.sh/v129 remove"
}
}