vscode-php-intellisense/.vscode/settings.json

11 lines
438 B
JSON
Raw Permalink Normal View History

2016-08-25 15:55:00 +00:00
// Place your settings in this file to overwrite default and user settings.
{
2018-11-11 17:32:17 +00:00
"files.exclude": {
"out": false // set this to true to hide the "out" folder with the compiled JS files
},
"search.exclude": {
"out": true // set this to false to include "out" folder in search results
},
"typescript.tsdk": "./node_modules/typescript/lib" // we want to use the TS server from our node_modules folder to control its version
}