DEV Community

kay-adamof
kay-adamof

Posted on

How to hide or Fix; `typescript: File is a CommonJS module; it may be converted to an ES module.`

Liquid syntax error: Unknown tag 'endraw'

Top comments (1)

Collapse
 
maniacen profile image
Shivam Mehta

You can disable it for neovim as follows:

local lspconfig = require("lspconfig") lspconfig.tsserver.setup({ init_options = { preferences = { disableSuggestions = true, }, }, }) 
Enter fullscreen mode Exit fullscreen mode