forked from probablykasper/time-machine-inspector
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.jsonc
More file actions
55 lines (51 loc) · 1.15 KB
/
deno.jsonc
File metadata and controls
55 lines (51 loc) · 1.15 KB
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
51
52
53
54
55
{
"$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json",
// Enable node_modules directory for Vite/Tauri compatibility
"nodeModulesDir": "auto",
"tasks": {
"install": "deno install --node-modules-dir=auto",
"tauri": "tauri",
"dev": "tauri dev",
"dev:web": "vite",
"build": "tauri build",
"build:web": "vite build",
"test": "cargo test --manifest-path ./src-tauri/Cargo.toml",
"lint": "svelte-check --tsconfig ./tsconfig.json && eslint src && prettier --check src",
"format": "eslint --fix src && prettier --write src"
},
"lint": {
"include": [
"src/**/*.ts",
"*.ts"
],
"exclude": [
"dist/",
"src-tauri/target/",
"node_modules/"
],
"rules": {
"tags": ["recommended"],
"exclude": [
"no-undef",
"no-window",
"no-window-prefix"
]
}
},
"fmt": {
"include": [
"src/**/*.ts",
"*.ts"
],
"exclude": [
"dist/",
"src-tauri/target/",
"node_modules/"
],
"useTabs": true,
"lineWidth": 100,
"semiColons": false,
"singleQuote": true,
"proseWrap": "preserve"
}
}