Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
webfiltered committed Dec 18, 2024
1 parent d1749f2 commit 042e428
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
11 changes: 9 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,22 @@
"cwd": "${workspaceFolder}",
"outputCapture": "std",
"sourceMaps": true,
"resolveSourceMapLocations": ["${workspaceFolder}/src/**", "${workspaceFolder}/.vite/**", "!**/node_modules/**"],
"resolveSourceMapLocations": [
"${workspaceFolder}/src/**",
"${workspaceFolder}/.vite/**",
"!**/node_modules/**"
],
"preLaunchTask": "Start Vite Dev Server",
"autoAttachChildProcesses": true,
"env": {
"ELECTRON_ENABLE_LOGGING": "true",
"ELECTRON_ENABLE_STACK_DUMPING": "true",
"NODE_DEBUG": "true"
},
"outFiles": ["${workspaceFolder}/.vite/**/*.js", "${workspaceFolder}/.vite/**/*.js.map"]
"outFiles": [
"${workspaceFolder}/.vite/**/*.js",
"${workspaceFolder}/.vite/**/*.js.map"
]
}
]
}
5 changes: 4 additions & 1 deletion todesktop.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@
"!.husky/**"
],
"mac": {
"additionalBinariesToSign": ["./assets/uv/macos/uv", "./assets/uv/macos/uvx"]
"additionalBinariesToSign": [
"./assets/uv/macos/uv",
"./assets/uv/macos/uvx"
]
},
"windows": {
"nsisInclude": "./scripts/installer.nsh"
Expand Down
7 changes: 1 addition & 6 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,5 @@
},
"exclude": [".history", ".vite", "assets", "dist", "node_modules", "out"],
// Include JS files so they are covered by projectService (ESLint)
"include": [
"src/**/*",
"*.ts",
"*.js",
"scripts/**/*"
]
"include": ["src/**/*", "*.ts", "*.js", "scripts/**/*", "test/**/*"]
}

0 comments on commit 042e428

Please sign in to comment.