-
Notifications
You must be signed in to change notification settings - Fork 122
Description
I'm working on switching a very large project (2500+ files) to external modules. As a first step I'm switching the module type to system so that internal and external modules can coexist (for the hopefully brief transition). My project was compiling fine before that but after changing the module type to system (from null), and the destDir option to outFile in the grunt options object, i'm getting a lot of errors.
It seems like the src order is no longer being considered. I have a list of dynamically generated top level directories that I pass into the grunt src array that specifies a general dependency order, but after making the change I''m getting ts errors that make it clear they are not being imported in the right order.
Any ideas how the compilation is different/if it is ignoring the order?
Thanks