Files
godot-vscode-plugin/tsconfig.json
Ryan Brue f4e4b9c422 Implement headless LSP mode (#488)
* 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>
2023-10-10 23:05:22 -04:00

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"
]
}