-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
28 lines (28 loc) · 1.05 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
{
"tasks": {
"start": "deno run -A --no-check --unstable --watch=routes/,components/,setups/,tailwind.css ./dev.js",
"generate": "deno run -A --unstable ./scripts/generate.js",
"is-completely-transparent": "deno run -A --unstable ./scripts/is-completely-transparent.js",
"get-vexillologists": "deno run -A --unstable ./scripts/get-vexillologists.js",
"generate-entities": "deno run -A --unstable ./scripts/generate-entities.js",
"fix-svg": "deno run -A --unstable ./scripts/fix-svg.js",
"svg-to-png": "deno run -A --unstable ./scripts/svg-to-png.js",
"install": "deno run -A --unstable ./scripts/install.js",
"fill-database": "deno run -A --unstable ./scripts/fill-database.js",
"print": "deno run -A --unstable ./scripts/print.js",
"find-grid": "deno run -A --unstable ./scripts/find-grid.js",
"set-secrets": "deno run -A --unstable ./scripts/set-secrets.js"
},
"importMap": "./import-map.json",
"lint": {
"rules": {
"exclude": [
"require-await"
]
}
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
}
}