-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
52 lines (52 loc) · 886 Bytes
/
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
{
"name": "@mccann-hub/create-typescript-template",
"version": "0.3.0",
"exports": "./src/index.ts",
"tasks": {
"dev": "deno test --watch ./src/index.ts"
},
"license": "MIT",
"imports": {
"@/": "./src/",
"@utils/": "./src/utils/",
"@std/assert": "jsr:@std/assert@1"
},
"lint": {
"include": [
"./src/"
],
"exclude": [
"./tests/**/*.spec.ts"
],
"rules": {
"tags": [
"recommended"
]
}
},
"fmt": {
"useTabs": false,
"lineWidth": 80,
"indentWidth": 2,
"semiColons": true,
"singleQuote": true,
"proseWrap": "preserve",
"include": [
"./src/"
],
"exclude": [
"./tests/**/*.spec.ts"
]
},
"nodeModulesDir": "auto",
"exclude": [
"./dist/"
],
"publish": {
"include": [
"./src/",
"README.md",
"deno.json"
]
}
}