-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.jsonc
45 lines (45 loc) · 1.26 KB
/
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
42
43
44
45
{
"compilerOptions": {
"checkJs": true,
"lib": [
"esnext",
"dom",
"dom.iterable"
]
},
"fmt": {
"useTabs": false,
"lineWidth": 80,
"indentWidth": 2,
"semiColons": true,
"singleQuote": false,
"proseWrap": "always",
"include": ["src/"],
"exclude": ["src/testdata/", "data/fixtures/**/*.ts"]
},
"imports": {
"@ngrok/ngrok": "npm:@ngrok/ngrok",
"gpt-tokenizer": "npm:gpt-tokenizer",
"gpt-tokenizer/model/gpt-3.5-turbo": "npm:gpt-tokenizer/model/gpt-3.5-turbo",
"gpt-tokenizer/encoding/p50k_base": "npm:gpt-tokenizer/encoding/p50k_base",
"gpt-tokenizer/GptEncoding.ts": "npm:gpt-tokenizer/GptEncoding.ts",
"playwright": "npm:playwright",
"html2text": "npm:[email protected]"
},
"lint": {
"include": ["api/"],
"exclude": [],
"rules": {
"tags": ["recommended"],
"include": [
"single-var-declarator",
"no-sparse-arrays",
"no-sync-fn-in-async-fn",
"no-throw-literal",
"no-undef",
"prefer-ascii"
],
"exclude": []
}
}
}