tsconfig-paths-webpack-plugin icon indicating copy to clipboard operation
tsconfig-paths-webpack-plugin copied to clipboard

import "~/lib"; doesn't get processed

Open shuckster opened this issue 2 years ago • 0 comments

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.

shuckster avatar May 26 '22 16:05 shuckster