tsconfig-paths-webpack-plugin
tsconfig-paths-webpack-plugin copied to clipboard
import "~/lib"; doesn't get processed
Hope I've got the right repo to report this, but I'm seeing the following issue:
// lib.ts
export const nothing = null;
// app.ts :: works
import { nothing } from '~/lib';
// app.ts :: fails
import '~/lib';
As you can see, just importing any old thing will trigger the path-transforming logic.