-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeno.json
29 lines (29 loc) · 1.13 KB
/
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
{
"tasks": {
"chel": "deno task build && deno run --import-map=./vendor/import_map.json --allow-net --allow-read=. --allow-write=. --no-remote build/main.js",
"lint": "standard ./src",
"vendor": "deno vendor -f src/main.ts scripts/compile.ts",
"compile": "deno run --import-map=./vendor/import_map.json --no-remote --allow-run --allow-read=. --allow-write=./dist scripts/compile.ts",
"build": "deno run --import-map=./vendor/import_map.json --no-remote --allow-run --allow-read --allow-env --allow-write=./build --allow-net scripts/build.ts",
"dist": "deno lint && deno task build && deno task compile",
"test": "deno test --import-map=./vendor/import_map.json --allow-read=. --allow-write=test --no-remote"
},
"imports": {
"https://deno.land/std/io/util.ts": "https://deno.land/[email protected]/io/util.ts"
},
"compilerOptions": {
"allowJs": true,
"strict": true
},
"fmt": {
"lineWidth": 100,
"semiColons": false,
"singleQuote": true
},
"lint": {
"files": {
"exclude": ["node_modules/", "test/", "vendor/", "dist/", "build/"]
}
},
"importMap": "./vendor/import_map.json"
}