-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.jsonc
More file actions
33 lines (33 loc) · 818 Bytes
/
deno.jsonc
File metadata and controls
33 lines (33 loc) · 818 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
30
31
32
33
{
"nodeModulesDir": "auto",
"tasks": {
"build:css": "deno run -A npm:tailwindcss -i static/input.css -o static/styles.css --minify",
"watch:css": "deno run -A npm:tailwindcss -i static/input.css -o static/styles.css --watch",
"tauri": "deno run -A npm:@tauri-apps/cli",
"tauri:dev": "deno run -A npm:@tauri-apps/cli dev",
"tauri:build": "deno run -A npm:@tauri-apps/cli build"
},
"lint": {
"exclude": ["src-tauri/dist/js/"]
},
"fmt": {
"indentWidth": 2,
"useTabs": false,
"semiColons": true,
"singleQuote": true,
"include": ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx"]
},
"exclude": [
"node_modules",
"src-tauri",
".task",
".cache",
".claude",
".github",
".serena",
"backlog",
"vendor",
"fastlane",
"docs"
]
}