...
This commit is contained in:
1
vscode-lsp/.gitignore
vendored
1
vscode-lsp/.gitignore
vendored
@@ -1 +1,2 @@
|
||||
node_modules
|
||||
out
|
||||
8
vscode-lsp/.vscode/extensions.json
vendored
8
vscode-lsp/.vscode/extensions.json
vendored
@@ -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"
|
||||
]
|
||||
}
|
||||
4
vscode-lsp/.vscode/launch.json
vendored
4
vscode-lsp/.vscode/launch.json
vendored
@@ -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": [
|
||||
|
||||
11
vscode-lsp/.vscode/settings.json
vendored
11
vscode-lsp/.vscode/settings.json
vendored
@@ -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"
|
||||
}
|
||||
}
|
||||
4
vscode-lsp/.vscode/tasks.json
vendored
4
vscode-lsp/.vscode/tasks.json
vendored
@@ -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 @@
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user