Skip to content

Instantly share code, notes, and snippets.

@dxc04
Created June 30, 2020 09:27
Show Gist options
  • Save dxc04/9d4020cb6b241678f30a5f9c46814ba6 to your computer and use it in GitHub Desktop.
Save dxc04/9d4020cb6b241678f30a5f9c46814ba6 to your computer and use it in GitHub Desktop.
Web Lib Components and typescript vue configurations
module.exports = {
configureWebpack: {
output: {
libraryExport: "default"
},
module: {
rules: [
{
test: /\.ts$/,
exclude: /node_modules/,
loader: "ts-loader",
options: {
appendTsSuffixTo: [/\.vue$/]
}
}
]
}
},
devServer: {
port: 5000
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment