Created
February 6, 2018 16:37
-
-
Save kamiljozwik/d8abc86752b908005853a43b66f0b8cf to your computer and use it in GitHub Desktop.
Webpack config for TypeScript Loader
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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