-
Notifications
You must be signed in to change notification settings - Fork 85
/
deno.json
50 lines (50 loc) · 1.49 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
{
"tasks": {
"dev": "vite",
"build": "DENO_V8_FLAGS=--max_old_space_size=10240 vite build && cp CNAME .nojekyll dist/",
"format": "dprint fmt",
"check": "DENO_DISABLE_PEDANTIC_NODE_WARNINGS=1 deno check src/main.tsx vite.config.ts",
"test": "deno test",
"predeploy": "deno task build",
"preview": "vite preview",
"addTypeScriptVersions": "deno run -A scripts/addTypeScriptVersions.ts",
"updateCompilerFiles": "deno task copyLibFiles && deno task createCompilerVersions && deno task createFactoryCode && deno task createPublicApiInfo",
"copyLibFiles": "deno run -A scripts/copyLibFiles.ts ",
"createCompilerVersions": "deno run -A scripts/createCompilerVersions.ts",
"createFactoryCode": "deno run -A scripts/createFactoryCode.ts",
"createPublicApiInfo": "deno run -A scripts/createPublicApiInfo.ts"
},
"compilerOptions": {
"lib": ["deno.ns", "dom"],
"jsx": "react-jsx"
},
"lint": {
"rules": {
"exclude": ["no-explicit-any", "no-sloppy-imports"]
},
"exclude": [
"**/*.generated.ts"
]
},
"fmt": {
"lineWidth": 120,
"exclude": [
"src/resources",
"**/*.generated.ts"
]
},
"imports": {
"@david/dax": "jsr:@david/dax@^0.40.0",
"@david/dts-minify": "jsr:@david/dts-minify@^0.3.3",
"@std/expect": "jsr:@std/expect@^0.221",
"@std/semver": "jsr:@std/semver@^0.221"
},
"exclude": [
"dist"
],
"unstable": [
"sloppy-imports",
"bare-node-builtins",
"unsafe-proto"
]
}