-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeno.json
76 lines (76 loc) · 1.93 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"license": "./LICENSE",
"tasks": {
"clean-dist": "rm -r ./dist/*",
"install": "deno install",
"build": "deno task clean-dist; deno run -A ./config/build/index.ts",
"build:watch": "deno run -A ./config/build/index.ts --watch",
"build:dev": "deno task clean-dist; deno run -A ./config/build/index.ts --develope",
"build:dev:watch": "deno run -A ./config/build/index.ts --develope --watch",
"cache": "deno cache --reload .",
"serve": "deno run -A ./src/server/index.ts",
"serve:dev": "deno run -A ./src/server/index.ts --develope --port=8000",
"lint": "deno lint",
"test": "deno test -A --check --reload --doc --permit-no-files --junit-path=\"./reports/report.xml\""
},
"lock": "./config/lock.json",
"importMap": "./config/import_map.json",
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"experimentalDecorators": true,
"lib": [
"esnext",
"dom",
"webworker"
],
"types": [
"./config/types/scss.d.ts"
],
"jsx": "react-jsx",
"jsxImportSource": "npm:solid-js"
},
"exclude": [
"./dist/"
],
"test": {
"include": [
"**/*.test.ts"
]
},
"lint": {
"rules": {
"tags": [
"recommended"
],
"include": [
"camelcase",
"default-param-last",
"eqeqeq",
"explicit-function-return-type",
"explicit-module-boundary-types",
"guard-for-in",
"no-const-assign",
"no-eval",
"no-external-import",
"no-non-null-asserted-optional-chain",
"no-non-null-assertion",
"no-self-compare",
"no-sparse-arrays",
"no-sync-fn-in-async-fn",
"no-throw-literal",
"no-undef",
"prefer-ascii",
"single-var-declarator",
"verbatim-module-syntax"
],
"exclude": [
"no-inferrable-types"
]
}
},
"fmt": {
"singleQuote": true,
"lineWidth": 120
}
}