-
Notifications
You must be signed in to change notification settings - Fork 3
/
deno.jsonc
28 lines (28 loc) · 1.09 KB
/
deno.jsonc
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
{
"lock": false,
"nodeModulesDir": "auto",
"fmt": {
"useTabs": true,
"singleQuote": false,
"lineWidth": 80,
"proseWrap": "always",
"indentWidth": 4,
"semiColons": true
},
"lint": { "rules": { "tags": ["recommended"] } },
"compilerOptions": {
"jsx": "react",
"jsxFactory": "BotUI.createElement",
"jsxFragmentFactory": "fragment",
"lib": ["dom", "esnext", "deno.window"]
},
"tasks": {
"run": "deno run --config=deno.jsonc --allow-net --allow-env --allow-read --allow-write --allow-run index.ts",
"runProd": "deno run --config=deno.jsonc --allow-net --allow-env --allow-read --allow-write --allow-run --unstable crashHandler.ts",
"runWithChecks": "deno run --config=deno.jsonc --allow-net --allow-env --allow-read --allow-write --allow-run --check index.ts",
"types": "supabase gen types typescript --project-id gukjxyrpjvwptnabpchl > assets/db/database.types.ts && deno fmt --config=deno.jsonc ./assets/db/database.types.ts",
"fmt": "npx prettier . --write && deno fmt --config=deno.jsonc ./",
"lint": "deno lint --config=deno.jsonc ./"
},
"importMap": "./imports.json"
}