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
It would be much simpler if we could just define some entry files (only modules) and all dependent files will be included in the compilation process automatically. Browserify does something like this (https://github.com/substack/node-browserify#browserifyfiles--opts).
This would drastically simplify the configuration and be very helpful for isomorphic/universal JavaScript apps.
Maybe modules or entryFiles would be a good name for the property in the tsconfig.
The text was updated successfully, but these errors were encountered:
Currently we have two ways to define the files include in the compilation process.
exclude
property Support "exclude" property in tsconfig.json #3188files
property https://github.com/Microsoft/TypeScript/wiki/tsconfig.jsonIt would be much simpler if we could just define some entry files (only modules) and all dependent files will be included in the compilation process automatically. Browserify does something like this (https://github.com/substack/node-browserify#browserifyfiles--opts).
This would drastically simplify the configuration and be very helpful for isomorphic/universal JavaScript apps.
Maybe
modules
orentryFiles
would be a good name for the property in thetsconfig
.The text was updated successfully, but these errors were encountered: