-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeno.jsonc
43 lines (43 loc) · 998 Bytes
/
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
{
"name": "@kuchta/radixverse",
"version": "0.0.4",
"exports": "./src/utils.ts",
"nodeModulesDir": "auto",
"tasks": {
"start": "deno run -A npm:vite --host",
"preview": "deno run -A npm:vite preview",
"check": "deno check src/**/*.ts src/**/*.tsx",
"lint": "deno lint",
"test": "deno test",
"build": "deno run -A npm:vite build",
"pre-commit": "deno task lint && deno task test && deno task build",
"deploy": "fleek sites deploy"
},
"publish": {
"include": [
"README.md",
"deno.json",
"package.json",
"src/utils.ts"
]
},
"include": [ "src/**/*.ts", "src/**/*.tsx" ],
"unstable": [ "sloppy-imports" ],
"lint": {
"include": ["src/"],
"rules": {
"tags": [ "recommended" ],
"exclude": [
"no-cond-assign",
"no-sloppy-imports"
]
}
},
"compilerOptions": {
"jsx": "react-jsx",
"lib": [ "ESNext", "DOM", "DOM.Iterable" ],
"noFallthroughCasesInSwitch": true,
"strict": true,
"types": [ "node", "vite/client", "@types/react"]
}
}