We've recently dug into an issue that surfaced after upgrading to version 7.0 of Storybook. I'll do my best to explain:
The config for angular Storybook has now moved into the angular.json file with a new storybook entry within the project's definition.
The browserTarget is set to libraryName:build but you can't set the sourceMap on the build:configurations entry in angular. It needs to be set on the hosting app config. In the case of Storybook that's the storybook config settings. But there's no way to provide a configurations object and set sourceMap to true.
Is there another way in v7 w/ Angular to turn on SourceMaps that I'm missing? Or does the @storybook/angular:start-storybook builder need to be expanded?
angular.json is not something I'm super familiar with how it works.