-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathdeno.json
More file actions
18 lines (18 loc) · 606 Bytes
/
deno.json
File metadata and controls
18 lines (18 loc) · 606 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"tasks": {
"app": "deno run -Ar --unstable ./webview/webview.ts",
"appDEV": "deno run -Ar --unstable \"https://deno.land/x/denogresdev/webview/webview.ts\"",
"appPROD": "deno run -Ar --unstable \"https://deno.land/x/denogres/webview/webview.ts\"",
"test": "deno test --no-check --allow-read --allow-net --allow-env --allow-write --allow-run --no-remote",
"test-no-output": "deno test --no-check -Aq"
},
"fmt": {
"files": {
"exclude": ["denogres-gui/", "vendor/"]
},
"options": {
"singleQuote": true
}
},
"importMap": "./vendor/import_map.json"
}