I can't find out how to make TS check for modules not only node_modules directory but other custom directories too.
My situation:
# webpack config
resolve: {
modules: ['components', 'node_modules']
}
# index.vue
import WorkspaceToolbar from 'WorkspaceToolbar' // TS can't find this module since it doesn't look in components dir.
So, is it possible to make TS check for modules like webpack does?