-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
28 lines (28 loc) · 941 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
{
"tasks": {
"dev": "deno run --allow-env --allow-read --allow-net --watch src/main.ts",
"start": "deno run --allow-env --allow-read --allow-net src/main.ts",
"prepare:db": "deno run --allow-env --allow-read --allow-net --allow-write ./src/scraping/jobs.ts",
"update:lock": "deno cache --lock=deno.lock --lock-write ./deps.ts",
"prepare:husky": "deno run --allow-env --allow-read --allow-write --allow-run ./tools/prepare-husky.ts",
"test": "deno test --allow-env --allow-read --allow-net"
},
"importMap": "./import_map.json",
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "https://cdn.skypack.dev/preact",
"noImplicitAny": false
},
"fmt": {
"files": {
"include": ["src/", "test/", "demo/", "deps.ts"]
},
"options": {
"useTabs": true,
"lineWidth": 120,
"singleQuote": true,
"proseWrap": "preserve",
"semiColons": false
}
}
}