From 0ec50ca67b600cf11434cb9ec2841aec2574a3b1 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Mon, 9 Dec 2024 09:30:11 +0200 Subject: [PATCH] Revert "vscode: Add task to watch build errors" This reverts commit 893a563afbd70724662ae391e90a2b2584a4d053. --- .vscode/tasks.json | 17 ----------------- package.json | 1 - 2 files changed, 18 deletions(-) delete mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index d5fb9133e..000000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "type": "npm", - "script": "errors", - "problemMatcher": "$tsc-watch", - "isBackground": true, - "presentation": { - "revealProblems": "never" - }, - "runOptions": { - "runOn": "folderOpen" - } - } - ] - } \ No newline at end of file diff --git a/package.json b/package.json index fa2cf134d..0169c8d6f 100644 --- a/package.json +++ b/package.json @@ -43,7 +43,6 @@ "prepare-dist": "rimraf ./dist && tsc && tsx ./bin/copy-dist.ts", "watch-dist": "tsx ./bin/watch-dist.ts", "update-build-info": "tsx bin/update-build-info.ts", - "errors": "tsc --watch --noEmit", "integration-edit-db": "cross-env TRILIUM_INTEGRATION_TEST=edit TRILIUM_PORT=8081 TRILIUM_DATA_DIR=./integration-tests/db nodemon src/main.ts", "integration-mem-db": "cross-env TRILIUM_INTEGRATION_TEST=memory TRILIUM_PORT=8082 TRILIUM_DATA_DIR=./integration-tests/db nodemon src/main.ts", "integration-mem-db-dev": "cross-env TRILIUM_INTEGRATION_TEST=memory TRILIUM_PORT=8082 TRILIUM_ENV=dev TRILIUM_DATA_DIR=./integration-tests/db nodemon src/main.ts",