tsconfig.json exclude setting is not necessary because it is already handled by defaults
msheakoski opened this issue · 1 comments
msheakoski commented
The exclude
setting in tsconfig.json is not necessary because the TypeScript default value already covers the same directories.
typescript-starter/tsconfig.json
Line 14 in 08b0150
From the TypeScript docs for the exclude setting:
["node_modules", "bower_components", "jspm_packages"]
, plus the value ofoutDir
if one is specified.
kamilmysliwiec commented
Fixed