In VS2019 Preview you have multiple templates. I'm interested in the following two:

I played a bit with both and I observed a difference. In the ASP.NET Core with React.js template, a SPA Proxy Server is started, whereas in the ASP.NET Core with React.js and Redux the simply works without that (the second template is in TS, not JS).
What I mean by simply works without that. I've looked into both .csproj files and I observed a difference (I'll only attach the noteworthy differences):
First template:
...
<SpaProxyServerUrl>https://localhost:5002</SpaProxyServerUrl>
<SpaProxyLaunchCommand>npm start</SpaProxyLaunchCommand>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.SpaProxy" Version="6.0.0-preview.6.21355.2" />
</ItemGroup>
...
<ItemGroup>
<DistFiles Include="$(SpaRoot)build\**" />
<ResolvedFileToPublish Include="@(DistFiles->'%(FullPath)')" Exclude="@(ResolvedFileToPublish)">
<RelativePath>wwwroot\%(RecursiveDir)%(FileName)%(Extension)</RelativePath>
...
Second template:
...
# SpaProxy stuff missing
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.SpaServices.Extensions" Version="6.0.0-preview.5.21301.17" />
</ItemGroup>
...
<ItemGroup>
<DistFiles Include="$(SpaRoot)build\**; $(SpaRoot)build-ssr\**" />
<ResolvedFileToPublish Include="@(DistFiles->'%(FullPath)')" Exclude="@(ResolvedFileToPublish)">
<RelativePath>%(DistFiles.Identity)</RelativePath>
Note that in the second template Microsoft.AspNetCore.SpaServices.Extensions is used instead of Microsoft.AspNetCore.SpaProxy.
There are also some differences in the Startup.cs files. The second template has some additional middleware used
public void ConfigureServices(IServiceCollection services)
{
services.AddControllersWithViews();
// NEW
services.AddSpaStaticFiles(configuration =>
{
configuration.RootPath = "ClientApp/build";
});
}
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
...
// NEW
app.UseSpaStaticFiles();
...
// NEW
app.UseSpa(spa =>
{
spa.Options.SourcePath = "ClientApp";
if (env.IsDevelopment())
{
spa.UseReactDevelopmentServer(npmScript: "start");
}
});
}
I also observed that in the JS ClientApp there is a setupProxy.js file whereas in the TS ClientApp there is none. Also the npm start command is set to "start": "rimraf ./build && react-scripts start" and in the TS file it's only react-scripts start.
I tried to make the necessary adjustments to run the JS app like the TS one, but I think I'm missing something since I've ran into an issue:
System.Net.Http.HttpRequestException: Failed to proxy the request to http://localhost:61105/, because the request to the proxy target failed. Check that the proxy target server is running and accepting requests to http://localhost:61105/.
While this error does make sense, I don't get where and how the TS template starts such a proxy server, if it does at all.
My question is: Can I get the behaviour of the TS template in the JS template? If yes, how? If not, why?