-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
33 lines (33 loc) · 843 Bytes
/
deno.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
{
"fmt": {
"files": {
"include": [],
"exclude": []
},
"options": {}
},
"lint": {
"files": {
"include": [],
"exclude": []
},
"rules": {
"tags": [],
"include": [],
"exclude": []
}
},
"tasks": {
"start": "deno run --unstable --import-map imports.deno.json --allow-all main.ts",
"test": "deno run --allow-ffi --allow-read --unstable --import-map imports.deno.json main_test.ts",
"test_rect": "deno run --allow-ffi --allow-read --unstable --import-map imports.deno.json test/test_rect.ts",
"build:rect": "deno compile --no-check --output dist/test_rect.exe --allow-ffi --allow-read --unstable --import-map imports.deno.json test/test_rect.ts"
},
"test": {
"files": {
"include": [],
"exclude": []
}
},
"compilerOptions": {}
}