UNPKG
vue-react-i18n-plugin
Version:
latest (1.0.1)
1.0.1
中文国际化插件,适用于 vue,react
vue-react-i18n-plugin
/
src
/
babel-plugin
/
options.js
11 lines
(9 loc)
•
350 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
// babel插件的配置信息 let OPTIONS = {
$i8n
:
"
$i8n
"
,
//
排除不需要国际化配置的调用方法 excludedCall: [
"
$i8n
"
,
"require"
,
"
$$
i8n"
,
"console.log"
],
//
$$
i8n(
'key'
,
'value'
) 标记不翻译字符 // 排除不需要配置的字符串, excludedPattern:
/\.\w+$/
,
//
默认文件名 }; module.exports = OPTIONS;