forked from Wave-Studio/BIDOME
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.jsonc
25 lines (25 loc) · 892 Bytes
/
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
{
"fmt": {
"useTabs": true,
"singleQuote": false,
"lineWidth": 80,
"proseWrap": "always",
"indentWidth": 4,
"semiColons": true
},
"lint": {
},
"compilerOptions": {
"jsx": "react",
"jsxFactory": "BotUI.createElement",
"jsxFragmentFactory": "fragment",
"lib": ["dom", "esnext", "deno.window"]
},
"tasks": {
"run": "deno run --import-map=imports.json --config=deno.jsonc --allow-net --allow-env --allow-read --allow-write --allow-run index.ts",
"runWithChecks": "deno run --import-map=imports.json --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": "deno fmt --config=deno.jsonc ./",
"lint": "deno lint --config=deno.jsonc ./"
}
}