Files
HyperBilibili/quickapp.config.js
T
2024-08-06 19:57:01 +08:00

21 lines
452 B
JavaScript

module.exports = {
webpack: {
module: {
rules: [
{
test: /\.tsx?$/,
use: [
{
loader: "ts-loader",
},
],
},
],
},
},
cli: {
"enable-custom-component": true,
"enable-jsc": true,
"enable-protobuf": true
}
};