Open NickBolles opened 2 years ago
tsconfig.json
"baseUrl": "./src/js/" ... "handlebars": ["handlebars/runtime"],
output of hq.get('webpack')
hq.get('webpack')
handlebars: '/Users/nick.bolles/Code/repo/src/js/handlebars/runtime',
this should stay as
handlebars: 'handlebars/runtime',
it looks like setting the value to "handlebars": ["../../node_modules/handlebars/runtime"], in the tsconfig works, but that's not ideal.
"handlebars": ["../../node_modules/handlebars/runtime"],
Hi NIck,
In essence, you're saying that Alias is not using the correct Node path resolution mechanism to resolve packages.
Sorry about this, I will look into it!
tsconfig.json
output of
hq.get('webpack')
this should stay as
it looks like setting the value to
"handlebars": ["../../node_modules/handlebars/runtime"],
in the tsconfig works, but that's not ideal.