@metasys96/react-native-voice-control
Version:
Package recodes the voice data using a microphone and converts it into text.
24 lines (22 loc) • 466 B
JavaScript
var path = require("path");
module.exports = {
mode: "production",
entry: "./src/index.js",
output: {
path: path.resolve("build"),
filename: "index.js",
libraryTarget: "commonjs2",
},
module: {
rules: [
{ test: /\.js$/, exclude: /node_modules/, loader: "babel-loader" },
{
test: /\.css$/,
loader: "style-loader!css-loader",
},
],
},
externals: {
react: "react",
},
};