language server start

This commit is contained in:
nub31
2025-10-23 10:16:52 +02:00
parent 17a94272a2
commit ca3d8fcca9
30 changed files with 3944 additions and 125 deletions

15
vscode-lsp/tsconfig.json Normal file
View File

@@ -0,0 +1,15 @@
{
"compilerOptions": {
"module": "Node16",
"target": "ES2022",
"outDir": "out",
"lib": [
"ES2022"
],
"sourceMap": true,
"rootDir": "src",
"strict": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true
}
}