// Place your settings in this file to overwrite default and user settings.
{
    "typescript.tsdk": "./node_modules/typescript/lib", // we want to use the TS server from our node_modules folder to control its version
    "files.watcherExclude": {
        "**/.git/objects/**": true,
        ".vscode-test/**": true
    },
    "search.exclude": {
        "**/node_modules": true,
        "**/bower_components": true,
        ".vscode-test/**": true
    }
}