Release v0.2.0 #5

Merged
ksv741 merged 13 commits from krylov into main 2024-04-04 06:13:56 +03:00
Showing only changes of commit 63f37d6c19 - Show all commits

View File

@ -13,11 +13,15 @@ const createResolvers = (options: WebpackOptions): webpack.ResolveOptions => {
extensions: ['.tsx', '.ts', '.js', '.jsx'],
mainFiles: ['index'],
modules: [
'node_modules',
paths.src,
path.resolve(paths.root),
path.resolve(paths.root, 'node_modules'),
],
plugins: getResolversPlugins(options),
fallback: {
path: false,
},
};
};