chamberlainpi
chamberlainpi

Reputation: 5241

In IntelliJ IDEA, how can you filter JS files out of "Find Usage" results when using TypeScript?

Is there a way to configure IntelliJ IDEA so that when you transpile code from TypeScript to Javascript, it ignores the Javascript files in search results and most importantly omit them in Find Usages results?

In doing so, however, it would also be important to keep JS results that are NOT transpiled from TypeScript (ie: the ones originally written in JS, not TS).

Upvotes: 3

Views: 1083

Answers (1)

selten98
selten98

Reputation: 821

How to hide .js and .map files in WebStorm while working on Angular2-typescript project By using the first answer stated there, you could exclude the native JS files and include all other JS files as it seems.

Upvotes: 3

Related Questions