I don't use TypeScript for the time being. Only ES6 with babel.
I don't have installed TypeScript in node_modules.
I get a specific warning from VSCode every time I open a workspace.
\node_modules\typescript\libdoesn't point to a valid tsserver install. Falling back to bundled TypeScript version.
How can I get rid of such warnings? Or should I change editor in order to feel calm?


// eslint-disable-line. vscode removes the line on save. I have eslint and eslint vscode extension. I do not have tslint extension. My user settings: ``` "eslint.codeActionsOnSave.mode": "all", "breadcrumbs.enabled": true, "javascript.validate.enable": false, "typescript.validate.enable": false, "javascript.format.enable": false, "typescript.format.enable": false, "javascript.implicitProjectConfig.checkJs": false, "javascript.suggestionActions.enabled": false, ``` Please help!