You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
466 B
JavaScript
25 lines
466 B
JavaScript
// babel-preset-taro 更多选项和默认值:
|
|
// https://github.com/NervJS/taro/blob/next/packages/babel-preset-taro/README.md
|
|
module.exports = {
|
|
presets: [
|
|
[
|
|
"taro",
|
|
{
|
|
framework: "react",
|
|
ts: true,
|
|
},
|
|
],
|
|
],
|
|
plugins: [
|
|
[
|
|
"import",
|
|
{
|
|
libraryName: "@antmjs/vantui",
|
|
libraryDirectory: "es",
|
|
style: (name) => `${name}/style/less`,
|
|
},
|
|
"@antmjs/vantui",
|
|
],
|
|
],
|
|
};
|