score:11

add the following to your webpack config:

module.exports = {
    // ...
    // existing code goes here
    // ...

    resolve: {
        extensions: ['.ts', '.tsx'],
    },
};

more info in the docs.


Related Query

More Query from same tag