-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.jsonc
40 lines (40 loc) · 823 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"compilerOptions": {
"allowJs": false,
"noImplicitReturns": true,
"useUnknownInCatchVariables": true
},
"tasks": {
"dev": "deno run --watch main.ts",
"compile": "deno compile --unstable --allow-read --allow-write --allow-net --allow-env --allow-run --import-map=import_map.json --target=x86_64-unknown-linux-gnu --output=bin/main src/main.ts"
},
"lint": {
"include": [
"src/"
],
"rules": {
"tags": [
"recommended"
]
}
},
"fmt": {
"useTabs": true,
"lineWidth": 120,
"indentWidth": 4,
"semiColons": true,
"singleQuote": true,
"proseWrap": "preserve",
"include": [
"src/"
],
"exclude": [
"src/testdata/",
"data/fixtures/**/*.ts"
]
},
"imports": {
"/": "./src/",
"./": "./"
}
}