mirror of
https://github.com/godotengine/godot-vscode-plugin.git
synced 2025-12-31 13:48:24 +03:00
* adds new Headless LSP mode * refactor and simplify LSP client control flow into new `ClientConnectionManager` class * adds new setting: `godotTools.lsp.headless`, disabled by default * split `godotTools.editorPath` into `godotTools.editorPath.godot3` and `.godot4` * fix #373, broken formatting in hovers * improve right click -> open docs to work on type-annotated variables --------- Co-authored-by: David Kincaid <daelonsuzuka@gmail.com>
21 lines
265 B
JSON
21 lines
265 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es2020",
|
|
"outDir": "out",
|
|
"lib": [
|
|
"es2020",
|
|
"dom"
|
|
],
|
|
"sourceMap": true,
|
|
"rootDir": "src",
|
|
"strict": false,
|
|
"allowJs": true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"out",
|
|
"tools"
|
|
]
|
|
}
|