I've created a project with TypeScript interfaces exclusively. For example, I have separate files like account.ts and item.ts that solely consist of interfaces.
export interface Account
{
name: string;
}
Now, I am wondering how I can package all these files locally to be able to npm install (from local) and access these interfaces in other projects using something similar to...
import { Account, Item } from 'all-my-interfaces';