-
-
Notifications
You must be signed in to change notification settings - Fork 433
Is ts-loader ignoring my tsconfig file? #508
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Did you try resolve: {
extensions: [
'.ts',
'.tsx',
'.js',
'.jsx',
'.json'
],
} although this might not help with the |
Yes - have those |
Where is your |
If you are expecting ts-loader to resolve according to your |
Thanks for sharing @jonaskello - it's not functionality I use and so I've never paid too much attention to it. That said, it's clearly valued by others. Would you fancy adding something to ts-loader's readme to point people who want that functionality towards your plugin? |
@johnnyreilly I actually made #693 just today for that :-). I'll go ahead and do a PR too. |
Thanks! |
I think ts-loader is ignoring my tsconfig file. In it I have set
"traceResolution": true,
and"outDir": "./dist/",
but none logs for resolutions are displayed and nodist
folder is created.Here is my
tsconfig.json
And
webpack.config.js
part:both files are in root directory
The text was updated successfully, but these errors were encountered: