-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.denon.json
58 lines (58 loc) · 868 Bytes
/
.denon.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"files": [
"./example/server.ts",
"./example/static_server.ts"
],
"quiet": false,
"debug": true,
"fullscreen": true,
"extensions": [
".js",
".ts",
".py",
".json"
],
"interval": 500,
"watch": [
"./"
],
"deno_args": [
"--allow-net",
"--allow-read",
"--import-map=import-map.json"
],
"scripts": {
"start_static": {
"cmd": "./example/static_server.ts",
"desc": "run static server"
},
"start": {
"cmd": "./example/server.ts",
"desc": "run server"
},
"test": {
"cmd": "deno test",
"desc": "exec test"
}
},
"execute": {
".js": [
"deno",
"run"
],
".ts": [
"deno",
"run"
],
".py": [
"python"
]
},
"allow": [
"net",
"read"
],
"fmt": false,
"unstable": true,
"test": true
}