-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
26 lines (26 loc) · 784 Bytes
/
Copy pathdeno.json
File metadata and controls
26 lines (26 loc) · 784 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
{
"nodeModulesDir": "auto",
"tasks": {
"dev": "deno run -A npm:vite",
"fmt": "deno fmt",
"fmt:check": "deno fmt --check",
"lint": "deno lint",
"typecheck": "deno run -A npm:typescript/tsc --noEmit",
"build": "deno task typecheck && deno run -A npm:vite build",
"preview": "deno run -A npm:vite preview",
"tauri": "deno run -A npm:@tauri-apps/cli"
},
"fmt": {
"lineWidth": 100,
"indentWidth": 2,
"useTabs": false,
"singleQuote": false,
"exclude": ["dist/", "src-tauri/target/", "node_modules/", "test-cases-reference/"]
},
"lint": {
"exclude": ["dist/", "src-tauri/target/", "node_modules/", "test-cases-reference/"],
"rules": {
"exclude": ["no-sloppy-imports", "no-window", "no-window-prefix"]
}
}
}