VSCode disable large folder warning

Is there a way to disable "Enable JavaScript for the entire JavaScript / TypeScript project, excluding large folders with source files that you don’t work on." warning, because it appears every time you open files? I set up jsconfig.json excluding folders like node_moduels, but my source files are in the range of thousands. I could not find such an option in the settings, so I assume that this is a typescript option? Im using vscode 1.14.1 and ts 2.4.1

+4
source share
1 answer

As stated on Github use this glob pattern

**/some_dir_like_node_modules/*

, vscode .

0

Source: https://habr.com/ru/post/1681683/


All Articles