Fix #315 - Add mapping for create-react-app webpack:///src.

Wanted to add the ability to have multiple mappings for the same pattern and select one that matches what's on disk, but I don't actually like having that much smartness.
This commit is contained in:
Rob Lourens 2017-04-30 12:11:20 -07:00
Родитель ae09b9ccad
Коммит b5f01e9532
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -18,6 +18,7 @@ const DefaultWebSourceMapPathOverrides: ISourceMapPathOverrides = {
'webpack:///./*': '${webRoot}/*',
'webpack:///*': '*',
'meteor://💻app/*': '${webRoot}/*',
'webpack:///src/*': '${webRoot}/*'
};
export class ChromeDebugAdapter extends CoreDebugAdapter {