-
Justin24506
Hi, i see that NPM package installations are now behind allow option in LSP configuration. So, how do I allow them? ``` "lsp": { "typescript-language-server": { "binary": { "enable_auto_updates": true, "allow_binary_download": true, }, "enable_lsp_tasks": true, }, } ``` seems not to be enough?
-
Justin24506
and I get this error ```Language server typescript-language-server: npm install disabled in Language Server settings: ["typescript@6.0.3", "typescript-language-server@5.3.0"] ```
-
Justin24506
"lsp": { "typescript-language-server": { "binary": { "ignore_system_version": false, "enable_auto_updates": true, "allow_binary_download": true, "allow_npm_install": true, }, "enable_lsp_tasks": true, }, This doesn't fix it either
-
Justin24506
I'm really sorry for cluttering up this chat. I've found the solution: ```"node": { "allow_binary_download": true, "path": "/opt/homebrew/bin/node", "npm_path": "/opt/homebrew/bin/npm", "allow_npm_install": true, },```