Skip to content

Commit 8ece290

Browse files
authored
fix: remote tsconfig.json move to csproj based config (#63)
1 parent 3dc993d commit 8ece290

File tree

2 files changed

+9
-34
lines changed

2 files changed

+9
-34
lines changed

src/Blazor.Extensions.Logging/Blazor.Extensions.Logging.csproj

+9-17
Original file line numberDiff line numberDiff line change
@@ -9,32 +9,24 @@
99
<TargetFramework>net5.0</TargetFramework>
1010
<IsPackable>true</IsPackable>
1111
<PackageId>Blazor.Extensions.Logging</PackageId>
12-
<TypescriptOutDir>wwwroot</TypescriptOutDir>
1312
</PropertyGroup>
1413

1514
<ItemGroup>
1615
<SupportedPlatform Include="browser" />
1716
</ItemGroup>
1817

1918
<PropertyGroup>
20-
<DefaultItemExcludes>$(DefaultItemExcludes);Client/*;</DefaultItemExcludes>
21-
</PropertyGroup>
22-
23-
<PropertyGroup>
24-
<ResolveCurrentProjectStaticWebAssetsInputsDependsOn>
25-
CompileTypeScript;
26-
$(ResolveCurrentProjectStaticWebAssetsInputs)
27-
</ResolveCurrentProjectStaticWebAssetsInputsDependsOn>
19+
<TypeScriptToolsVersion>Latest</TypeScriptToolsVersion>
20+
<TypeScriptNoImplicitAny>true</TypeScriptNoImplicitAny>
21+
<TypeScriptRemoveComments>true</TypeScriptRemoveComments>
22+
<TypeScriptSourceMap>false</TypeScriptSourceMap>
23+
<TypeScriptTarget>es6</TypeScriptTarget>
24+
<TypeScriptStrict>true</TypeScriptStrict>
25+
<TypeScriptAlwaysStrict>true</TypeScriptAlwaysStrict>
26+
<TypeScriptPreserveConstEnums>true</TypeScriptPreserveConstEnums>
27+
<TypescriptOutDir>wwwroot</TypescriptOutDir>
2828
</PropertyGroup>
2929

30-
<ItemGroup>
31-
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.3" />
32-
</ItemGroup>
33-
34-
<ItemGroup>
35-
<None Include="tsconfig.json"/>
36-
</ItemGroup>
37-
3830
<ItemGroup>
3931
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.3" />
4032
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0" />

src/Blazor.Extensions.Logging/tsconfig.json

-17
This file was deleted.

0 commit comments

Comments
 (0)