Add explicit module exports in empty index.ts files.
Review Request #12790 — Created Jan. 20, 2023 and submitted — Latest diff uploaded
TypeScript's
tsc
warns if a module lacks any exports. To satisfy that,
we now include anexport {}
in each of our emptyindex.ts
files.
Ran tsc and no longer saw the warnings.