Using Short Imports in TypeScript
When importing modules (e.g. classes, interfaces, etc) in TypeScript, the most common method is to allow the IDE to create a relative import statement. Here is an example:
import { ClassB } from '../../../../other/domain/ClassB';
However, there is an easy way to completely avoid these long import statements. All it requires is some simple and minor modifications to your tsconfig.json
file.
Read more…