You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tsconfig.json picks all files in the containing folder by default, this is problematic with "node_modules" that contain .ts/.d.ts that are not relevant to the project. "files" is not useful here because of the lack of support for globs (see #1927).
Proposal:
support a new property "exclude" that specifies a list of directories/files to exclude.
Would glob support be enough not to require this feature? I've also had this issue where node_modules was being built but with glob support I'd be fine.
tsconfig.json picks all files in the containing folder by default, this is problematic with "node_modules" that contain .ts/.d.ts that are not relevant to the project. "files" is not useful here because of the lack of support for globs (see #1927).
Proposal:
Note: This is needed if we want any of gulp/grunt/task runner/ProjectK support in VS .
The text was updated successfully, but these errors were encountered: