Webpack is configured to generate source maps for development builds, but typescript was not. Update tsconfig.json to enable source maps. Also, add yarn-error.log to .gitignore.
@@ -4,4 +4,5 @@ dist/
integration-tests/videos
integration-tests/screenshots
integration-tests/.DS_Store
-.DS_Store
+yarn-error.log
+.DS_Store
@@ -7,7 +7,8 @@
"jsx": "react",
"allowJs": true,
"strict": false,
- "noUnusedLocals": true
+ "noUnusedLocals": true,
+ "sourceMap": true
},
"include": ["src"]
}