diff --git a/deadlock-plugins/deadlock-extension/.vscodeignore b/deadlock-plugins/deadlock-extension/.vscodeignore
index d626c52f3c583b1db5e9a70958ac2f34ac37a757..62bf20897c27705b453c85d440e97fb4f0d9bc2a 100644
--- a/deadlock-plugins/deadlock-extension/.vscodeignore
+++ b/deadlock-plugins/deadlock-extension/.vscodeignore
@@ -3,4 +3,5 @@ out/
 !out/main.js
 src/
 dev/
-tsconfig.json
\ No newline at end of file
+tsconfig.json
+node_modules
\ No newline at end of file
diff --git a/deadlock-plugins/deadlock-extension/tsconfig copy.json b/deadlock-plugins/deadlock-extension/tsconfig copy.json
deleted file mode 100644
index d5fb6baf84003b437882d1ec1037f017d3d61967..0000000000000000000000000000000000000000
--- a/deadlock-plugins/deadlock-extension/tsconfig copy.json	
+++ /dev/null
@@ -1,23 +0,0 @@
-{
-  "compilerOptions": {
-    "module": "commonjs",
-    "target": "es2019",
-    "lib": ["ES2019"],
-    "sourceMap": true,
-    "rootDir": "src",
-    "outDir": "dist",
-    "strict": true,
-    "noImplicitAny": false,
-    "allowJs": true,
-    "types": ["reflect-metadata"],
-    "moduleResolution": "node",
-    "experimentalDecorators": true,
-    "emitDecoratorMetadata": true
-    /* enable all strict type-checking options */
-    /* Additional Checks */
-    // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
-    // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
-    // "noUnusedParameters": true,  /* Report errors on unused parameters. */
-  },
-  "exclude": ["node_modules", ".vscode-test", "dist", "out", "media", "resources", "webpack.config.js"]
-}