diff --git a/vscode-lsp/.gitignore b/vscode-lsp/.gitignore index 3c3629e..07d2252 100644 --- a/vscode-lsp/.gitignore +++ b/vscode-lsp/.gitignore @@ -1 +1,2 @@ node_modules +out \ No newline at end of file diff --git a/vscode-lsp/.vscode/extensions.json b/vscode-lsp/.vscode/extensions.json deleted file mode 100644 index 186459d..0000000 --- a/vscode-lsp/.vscode/extensions.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - // See http://go.microsoft.com/fwlink/?LinkId=827846 - // for the documentation about the extensions.json format - "recommendations": [ - "dbaeumer.vscode-eslint", - "ms-vscode.extension-test-runner" - ] -} diff --git a/vscode-lsp/.vscode/launch.json b/vscode-lsp/.vscode/launch.json index 4e94752..f308c75 100644 --- a/vscode-lsp/.vscode/launch.json +++ b/vscode-lsp/.vscode/launch.json @@ -1,7 +1,3 @@ -// A launch configuration that compiles the extension and then opens it inside a new window -// Use IntelliSense to learn about possible attributes. -// Hover to view descriptions of existing attributes. -// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 { "version": "0.2.0", "configurations": [ diff --git a/vscode-lsp/.vscode/settings.json b/vscode-lsp/.vscode/settings.json index afdab66..e35b3d4 100644 --- a/vscode-lsp/.vscode/settings.json +++ b/vscode-lsp/.vscode/settings.json @@ -1,11 +1,8 @@ -// Place your settings in this file to overwrite default and user settings. { - "files.exclude": { - "out": false // set this to true to hide the "out" folder with the compiled JS files - }, + "files.exclude": {}, "search.exclude": { - "out": true // set this to false to include "out" folder in search results + "out": true, + "node_modules": true, }, - // Turn off tsc task auto detection since we have the necessary tasks as npm scripts "typescript.tsc.autoDetect": "off" -} +} \ No newline at end of file diff --git a/vscode-lsp/.vscode/tasks.json b/vscode-lsp/.vscode/tasks.json index 3b17e53..2f61468 100644 --- a/vscode-lsp/.vscode/tasks.json +++ b/vscode-lsp/.vscode/tasks.json @@ -1,5 +1,3 @@ -// See https://go.microsoft.com/fwlink/?LinkId=733558 -// for the documentation about the tasks.json format { "version": "2.0.0", "tasks": [ @@ -17,4 +15,4 @@ } } ] -} +} \ No newline at end of file diff --git a/vscode-lsp/package.json b/vscode-lsp/package.json index 0c3dcc2..d0851e4 100644 --- a/vscode-lsp/package.json +++ b/vscode-lsp/package.json @@ -34,10 +34,8 @@ ] }, "scripts": { - "compile": "tsc -p ./", - "watch": "tsc -watch -p ./", - "lint": "eslint src", - "test": "vscode-test" + "build": "tsc -p ./", + "watch": "tsc -watch -p ./" }, "devDependencies": { "@types/node": "22.x",