Skip to content

Instantly share code, notes, and snippets.

@rahulsahay19
Created April 8, 2017 18:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rahulsahay19/64506f285eda03667d381473b9548dcc to your computer and use it in GitHub Desktop.
Save rahulsahay19/64506f285eda03667d381473b9548dcc to your computer and use it in GitHub Desktop.
webpack.config.js
module.exports = {
entry: "./main",
output: { filename: "app.js" },
module: {
loaders: [
{
test: /.ts$/,
loader: "ts-loader"
}
]
},
resolve: {
extensions: [".ts", ".js"]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment