generated from DenoPlayground/Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.jsonc
41 lines (41 loc) · 906 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
41
{
"tasks": {
"index": "deno run --check --unstable -A ./src/index.ts"
},
"exclude": [
"./dist/"
],
"test": {
"include": [
"**/*.test.ts"
]
},
"compilerOptions": {
"experimentalDecorators": true,
"target": "ES6",
"module": "ES6"
},
"fmt": {
"singleQuote": true,
"lineWidth": 120,
"indentWidth": 2
},
"lint": {
"rules": {
"tags": [
"recommended"
],
"include": [
"camelcase",
"default-param-last",
"eqeqeq",
"explicit-function-return-type",
"explicit-module-boundary-types",
"guard-for-in",
"no-eval",
"no-sparse-arrays",
"prefer-ascii"
]
}
}
}