Skip to content

Commit

Permalink
fix(#1875): Support npm linked libraries (#2291)
Browse files Browse the repository at this point in the history
  • Loading branch information
serhiisol authored and filipesilva committed Oct 10, 2016
1 parent 63023ae commit 8bf69d9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/angular-cli/models/webpack-build-common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ export function getWebpackCommonConfig(
return {
devtool: 'source-map',
resolve: {
extensions: ['.ts', '.js']
extensions: ['.ts', '.js'],
modules: [path.resolve(projectRoot, 'node_modules')]
},
context: path.resolve(__dirname, './'),
entry: entry,
Expand Down

0 comments on commit 8bf69d9

Please sign in to comment.