samuel ogundipe samuelayo
- lagos, nigeria
- Sign in to view email
- https://samuel.com.ng
View webpack.config.js
var path = require("path"); | |
var config = { | |
entry: ["./app.tsx"], | |
output: { | |
path: path.resolve(__dirname, "build"), | |
filename: "bundle.js" | |
}, | |
resolve: { | |
extensions: [".ts", ".tsx", ".js"] |
View tsconfig.json
{ | |
"compilerOptions": { | |
"target": "es6", | |
"jsx": "react", | |
"module": "commonjs" | |
}, | |
"exclude": [ | |
"node_modules" | |
] | |
} |
NewerOlder