nestjs/typescript-starter

tsconfig.json exclude setting is not necessary because it is already handled by defaults

msheakoski opened this issue · 1 comments

The exclude setting in tsconfig.json is not necessary because the TypeScript default value already covers the same directories.

"exclude": ["node_modules", "dist"]

From the TypeScript docs for the exclude setting:

["node_modules", "bower_components", "jspm_packages"], plus the value of outDir if one is specified.