Per this comment, you can add your application source via paths in tsconfig.json:
{
"compilerOptions": {
...,
"baseUrl": ".",
"paths": {
...,
"@app/*": ["app/*"],
"@components/*": ["components/*"]
}
}
}
Then you can import absolutely from app/ or components/ instead of relative to the current file:
import {TextInputConfiguration} from "@components/configurations";
Note: baseUrl must be specified if paths is.
See also
- https://www.typescriptlang.org/docs/handbook/module-resolution.html#path-mapping