10 lines
195 B
JavaScript
10 lines
195 B
JavaScript
|
|
// babel-preset-taro 更多配置和用法:https://docs.taro.zone/docs/next/babel-config
|
|||
|
|
module.exports = {
|
|||
|
|
presets: [
|
|||
|
|
['taro', {
|
|||
|
|
framework: 'react',
|
|||
|
|
ts: true,
|
|||
|
|
}],
|
|||
|
|
],
|
|||
|
|
}
|