diff --git a/.vscode/launch.json b/.vscode/launch.json index bafc2e03..e20dc7cd 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -9,7 +9,11 @@ "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": { @@ -17,7 +21,10 @@ "ELECTRON_ENABLE_STACK_DUMPING": "true", "NODE_DEBUG": "true" }, - "outFiles": ["${workspaceFolder}/.vite/**/*.js", "${workspaceFolder}/.vite/**/*.js.map"] + "outFiles": [ + "${workspaceFolder}/.vite/**/*.js", + "${workspaceFolder}/.vite/**/*.js.map" + ] } ] } diff --git a/todesktop.json b/todesktop.json index 1553af2a..8728452c 100644 --- a/todesktop.json +++ b/todesktop.json @@ -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" diff --git a/tsconfig.json b/tsconfig.json index 641761a5..e295f437 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -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/**/*"] }