-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.jsonc
More file actions
25 lines (25 loc) · 740 Bytes
/
deno.jsonc
File metadata and controls
25 lines (25 loc) · 740 Bytes
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
{
"importMap": "import_map.json",
"compilerOptions": {
"allowJs": true,
"strict": true,
"lib": [
"dom",
"dom.iterable",
"dom.asynciterable",
"deno.ns"
],
"jsx": "react"
},
"lint": {},
"fmt": {
"exclude": ["README.md"],
"singleQuote": true
},
"tasks": {
"fmt": "deno fmt --options-single-quote --watch",
"lint": "deno lint --watch",
"build": "rm -rf build/ && cp -R static/ build/ && curl https://cdn.jsdelivr.net/npm/semantic-ui@2.5/dist/semantic.min.css --output build/semantic.min.css && deno bundle --check --config=deno.jsonc client/index.tsx build/index.js",
"serve": "deno run --check --allow-net --allow-env --allow-read=build/ server/index.ts"
}
}