Seth Madison
05/14/2025, 10:57 PMper-module
output granularity, is there a way to generate typescript files per module?Edoardo Luppi
05/14/2025, 11:01 PMEdoardo Luppi
05/14/2025, 11:03 PMper-file
, but I don't see it as useful for per-module
.Seth Madison
05/14/2025, 11:20 PMimport { Foo } from 'umbrella/submoduleA'
and in a different part of the app:
import { Bar } from 'umbrella/submoduleB'
Right now the only way to do this with typescript support is to expose all of `umbrella and do:
import { Foo } from 'umbrella'
Seth Madison
05/14/2025, 11:24 PMEdoardo Luppi
05/15/2025, 2:46 PMSeth Madison
05/15/2025, 5:12 PMEdoardo Luppi
05/15/2025, 5:15 PMSeth Madison
05/15/2025, 6:22 PM