// Place your settings in this file to overwrite default and user settings.
{
	"editor.insertSpaces": false,
	"[markdown]": {
		"editor.defaultFormatter": "esbenp.prettier-vscode",
		"editor.formatOnSave": true,
		"editor.rulers": [80],
		"editor.wordWrap": "bounded",
		"editor.wordWrapColumn": 80
	},
	"files.associations": {
		// VSCode defaults these to Markdown instead of ignore files
		".markdownlintignore": "ignore",
		".prettierignore": "ignore"
	},
	"files.exclude": {
		"out": false // set this to true to hide the "out" folder with the compiled JS files
	},
	"mochaExplorer.timeout": 999999, // Set large so debugging doesn't trigger mocha timeout
	"search.exclude": {
		"out": true // set this to false to include "out" folder in search results
	},
	"testExplorer.useNativeTesting": true, // Use VSCode Native Test Explorer
	"typescript.tsdk": "./node_modules/typescript/lib" // we want to use the TS server from our node_modules folder to control its version
}