DEV Community

Discussion on: Understanding the Modern Web Stack: Webpack - DevServer, React & Typescript

Collapse
 
deanhiller profile image
Dean Hiller

GREAT article that helped me get setup and the only things that did not work is I had to have "jsx": "react-jsx" instead of "preserve" or my index.tsx failed in a real react app. The other change I had to have was an addition to webpack

resolve: {
extensions: ['.js', '.jsx', '.tsx', '.ts', '.html', '.scss'],
modules: ['node_modules'],
},

Collapse
 
prikalel profile image
Velikiy Prikalel

"jsx": "react-jsx" fixed my problem. Thanks!