Closed isc30 closed 6 years ago
I'm trying to use it by adding those lines to my .csproj
.csproj
<TSLintExclude Include="%2A%2A/%2A.d.ts" /> <TSLintExclude Include="%2A%2A/%2A.tsx" />
I also tried:
<TSLintExclude>**/*.d.ts</TSLintExclude> <TSLintExclude>**/*.tsx</TSLintExclude>
Solved: They must be inside <ItemGroup>
<ItemGroup>
<ItemGroup> <TSLintExclude Include="**/*.d.ts" /> <TSLintExclude Include="typings/**/*.ts" /> </ItemGroup>
I'm trying to use it by adding those lines to my
.csproj
I also tried: