To get some LSP's working with bitburners definitions, for some IDE's you need to add a (ts/js)confg.json with very specific content in them to let the IDE know where to look for auto completions and such.
Currently to my knowledge, this is only the case for VSCode users.
For tsconfig.json:
{
"compilerOptions": {
"module": "NodeNext"
}
}
For jsconfig.json:
{
"compilerOptions": {
"module": "NodeNext",
"typeRoots": ["."],
"checkJs": true
}
}
To get some LSP's working with bitburners definitions, for some IDE's you need to add a (ts/js)confg.json with very specific content in them to let the IDE know where to look for auto completions and such.
Currently to my knowledge, this is only the case for VSCode users.
For
tsconfig.json:{ "compilerOptions": { "module": "NodeNext" } }For
jsconfig.json:{ "compilerOptions": { "module": "NodeNext", "typeRoots": ["."], "checkJs": true } }