diff --git a/desktop/src/api/upload.ts b/desktop/src/api/upload.ts index 49c9d094d..f80c25977 100644 --- a/desktop/src/api/upload.ts +++ b/desktop/src/api/upload.ts @@ -1,10 +1,10 @@ +import { getElectronFile } from "../services/fs"; import { getElectronFilesFromGoogleZip, getSavedFilePaths, } from "../services/upload"; import { uploadStatusStore } from "../stores/upload.store"; import { ElectronFile, FILE_PATH_TYPE } from "../types"; -import { getElectronFile } from "./../services/fs"; export const getPendingUploads = async () => { const filePaths = getSavedFilePaths(FILE_PATH_TYPE.FILES); diff --git a/desktop/tsconfig.json b/desktop/tsconfig.json index 30e62626d..95108c53a 100644 --- a/desktop/tsconfig.json +++ b/desktop/tsconfig.json @@ -50,12 +50,6 @@ "outDir": "app", /* Generate source maps */ "sourceMap": true, - /* Allow absolute imports starting with src as root */ - "baseUrl": "src", - /* Allow imports of paths from node_modules */ - "paths": { - "*": ["node_modules/*"] - }, /* Temporary overrides to get things to compile with the older config */ "strict": false,