// Place your settings in this file to overwrite default and user settings.
{
	// Specifies the folder path containing the tsserver and lib*.d.ts files to use.
	"typescript.tsdk": "./node_modules/typescript/lib",
	
	// Controls the rendering size of tabs in characters. Accepted values: "auto", 2, 4, 6, etc. If set to "auto", the value will be guessed when a file is opened.
	"editor.tabSize": 4,
	
	// Controls if the editor will insert spaces for tabs. Accepted values:  "auto", true, false. If set to "auto", the value will be guessed when a file is opened.
	"editor.insertSpaces": true,
	
	"files.exclude": {
        "**/.git": true,
        "**/.DS_Store": true,
		"**/*.js": {"when": "$(basename).ts"}
    }
}