-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.jsonc
More file actions
23 lines (23 loc) · 943 Bytes
/
deno.jsonc
File metadata and controls
23 lines (23 loc) · 943 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"compilerOptions": {
"strictPropertyInitialization": false
},
"importMap": "import_map.json",
"tasks": {
"dev": "deno run --watch --allow-net --allow-read --allow-write --allow-env main.ts",
"build": "deno compile --allow-net --allow-read --allow-write --allow-env --unstable --output dist/main main.ts",
"start": "deno run --allow-net --allow-read --allow-write --allow-env main.ts",
"migration:up": "deno run -A --unstable https://deno.land/x/nessie/cli.ts migrate",
"migration:down": "deno run -A --unstable https://deno.land/x/nessie/cli.ts rollback all",
"migration:make": "deno run -A --unstable https://deno.land/x/nessie/cli.ts make:migration",
"migration:status": "deno run -A --unstable https://deno.land/x/nessie/cli.ts status"
},
"fmt": {
"singleQuote": true,
"lineWidth": 80,
"semiColons": true,
"useTabs": false,
"indentWidth": 2,
"proseWrap": "always"
}
}