Description
I know I can control the order of files via the ordering provided in my config (either in files
or include
). But since things like types can change ordering so that even if we have files:['a.ts', 'b.ts']
, then the resulting output will have b.ts
's compiled output first (see here)
Would it be possible to add a compiler flag so that we can enforce that a.ts
doesn't pull in b.ts
? To enforce the ordering provided in files
or include
? I tried looking into doing this myself but this project's quite big. Something like a compiler error when trying to pull in a file that is "after" the current file in the include order.
Ideally, being able to make it so that if I have:
include: [ "library/*", "core/*", "ui/*" ]
then files within library/*
could depend on each other but not on things in core/*
, and core/*
could not depend on anything in ui/*
(but could depend on things in core/*
or lib/*
). This would already help to solve many of my ordering-related headaches which mean I cannot use things like the import
statement safely.