mirror of
https://github.com/sorenisanerd/gotty.git
synced 2024-11-09 23:34:26 +00:00
20 lines
389 B
JavaScript
20 lines
389 B
JavaScript
|
module.exports = {
|
||
|
entry: "./src/main.ts",
|
||
|
output: {
|
||
|
filename: "./dist/bundle.js"
|
||
|
},
|
||
|
devtool: "source-map",
|
||
|
resolve: {
|
||
|
extensions: [".ts", ".tsx", ".js"],
|
||
|
},
|
||
|
module: {
|
||
|
rules: [
|
||
|
{
|
||
|
test: /\.tsx?$/,
|
||
|
loader: "ts-loader",
|
||
|
exclude: [/node_modules/],
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
};
|