-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
29 lines (29 loc) · 977 Bytes
/
deno.json
File metadata and controls
29 lines (29 loc) · 977 Bytes
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
{
"tasks": {
"dev": "deno run -A npm:vite",
"build": "deno run -A npm:vite build",
"preview": "deno run -A npm:vite preview",
"test": "deno test",
"test:watch": "deno test --watch",
"test:e2e": "deno test --allow-net --allow-run --allow-env --allow-read --allow-write tests/*.spec.ts",
"typecheck": "deno run -A npm:typescript/tsc"
},
"imports": {
"@/": "./src/",
"@pkg/": "./pkg/",
"vite": "npm:[email protected]",
"@tailwindcss/vite": "npm:@tailwindcss/vite@^4.1.16",
"tailwindcss": "npm:tailwindcss@^4.1.16",
"@b-fuze/deno-dom": "jsr:@b-fuze/deno-dom@^0.1.56",
"@b-fuze/deno-dom/wasm": "jsr:@b-fuze/deno-dom@^0.1.56/wasm"
},
"compilerOptions": {
"jsx": "react",
"jsxFactory": "createDomElement",
"jsxFragmentFactory": "createDomFragment",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"strict": true
},
"exclude": ["pkg/**", "dist/**", "node_modules/**"],
"nodeModulesDir": "auto"
}