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
//example 1.ts
import { Person } from '@/example2'
export interface Family {
member: Person[]
}
//example2.ts
export interface Person {
Name: string
Children: { [key: string]: number | Person[] }
}
then ts-auto-guard --export-all src/example1.ts naturally results in Stack: RangeError: Maximum call stack size exceeded by ts-morph or Segmentation fault: 11 when stack size substaintially increased.
This does not happen when types are defined in the same file.
The text was updated successfully, but these errors were encountered:
then
ts-auto-guard --export-all src/example1.ts
naturally results inStack: RangeError: Maximum call stack size exceeded
by ts-morph orSegmentation fault: 11
when stack size substaintially increased.This does not happen when types are defined in the same file.
The text was updated successfully, but these errors were encountered: