generated from JavaScriptPlayground/Template-SolidJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
53 lines (53 loc) · 1.13 KB
/
deno.json
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
42
43
44
45
46
47
48
49
50
51
52
53
{
"tasks": {
"build": "deno run -A ./build.config.ts",
"build:watch": "deno run -A ./build.config.ts --watch",
"build:dev": "deno run -A ./build.config.ts --develope",
"build:dev:watch": "deno run -A ./build.config.ts --develope --watch",
"lint": "deno lint",
"test": "deno test -A --unstable --check --reload --doc --allow-none --junit-path=\"./report.xml\""
},
"exclude": [
"./dist/"
],
"test": {
"include": [
"**/*.test.ts"
]
},
"compilerOptions": {
"experimentalDecorators": true,
"target": "ES6",
"module": "ES6",
"lib": [
"es6",
"dom",
"dom.iterable",
"webworker",
"webworker.importscripts",
"webworker.iterable"
]
},
"fmt": {
"singleQuote": true,
"lineWidth": 120
},
"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"
]
}
}
}