It appears that the Sass-loader is not utilizing the path alias declared in the typescript configuration. When using @use or @import, it results in a "not found" error.
Webpack
resolve: {
plugins: [new TsconfigPathsPlugin()],
tsconfig
"paths": {
"Components/*": ["src/components/*"],
The issue
SassError: Can't find stylesheet to import.
1 │ @use 'Components/UI/Grid';
Is there any way to incorporate the tsconfig path into the sass-loader?