Skip to content

Instantly share code, notes, and snippets.

@kamiljozwik
Created February 6, 2018 16:37
Show Gist options
  • Save kamiljozwik/d8abc86752b908005853a43b66f0b8cf to your computer and use it in GitHub Desktop.
Save kamiljozwik/d8abc86752b908005853a43b66f0b8cf to your computer and use it in GitHub Desktop.
Webpack config for TypeScript Loader
module.exports = {
entry: "./app.ts",
output: {
filename: "bundle.js"
},
module: {
loaders: [
{ test: /\.ts$/, loader: "ts-loader" }
]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment