4
votes

I need to ignore all files containing spec int their name for example MyStuff.spec.ts

How can I make tslint to ignore this type of files?

1

1 Answers

2
votes

in tsconfig json add:

  "exclude":[
    "node_modules",
    "**/__test*", //exclude all that *__test*
    "**/*.spec.ts" // exclude all that contain "spec.ts" in name
  ]