// 20170402175629
// https://raw.githubusercontent.com/katopz/universal-boilerplate/master/.vscode/launch.json

{
	"version": "0.2.0",
	"configurations": [
        {
			"name": "Debug Web",
			"type": "chrome",
			"request": "launch",
			"webRoot": "${workspaceRoot}",
			"url": "http://localhost:3000",
			"userDataDir": "${workspaceRoot}/.vscode/chrome",
			"sourceMaps": true,
			"smartStep": true,
			"internalConsoleOptions": "openOnSessionStart",
			"skipFiles": [
				"node_modules/**"
			],
			"sourceMapPathOverrides": {
				"webpack:///*": "${webRoot}/*"
			}
		}
	]
}