wbuchwalter / tslint-loader

tslint loader for webpack
192 stars 65 forks source link

exclude node_modules #39

Closed grauschnabel closed 7 years ago

grauschnabel commented 7 years ago

Hi there,

Is there a way to exclude the node_modules directory. I cannot fix all the tslint issues I load with npm install ....

Thanks, Martin

jmlopez-rod commented 7 years ago

You mean use exclude with webpack?

{ test: /\.ts$/i, loaders: ['ts', 'tslint'], exclude: /node_modules/ }
grauschnabel commented 7 years ago

thats it, thanks very much!