Skip to content

Instantly share code, notes, and snippets.

View gianlukk994's full-sized avatar
🌀

Gianluca Elia gianlukk994

🌀
View GitHub Profile
@gianlukk994
gianlukk994 / webpack.common.js
Created April 8, 2022 09:55
React webpack config
module.exports = {
entry: './src/index.tsx',
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: '/node_modules/'
}
]