Skip to content
Snippets Groups Projects
i18next-scanner.config.js 400 B
Newer Older
module.exports = {
Reiter, Christoph's avatar
Reiter, Christoph committed
    input: ['src/*.js'],
    output: './',
    options: {
        debug: false,
        removeUnusedKeys: true,
        func: {list: ['i18n.t', '_i18n.t']},
Reiter, Christoph's avatar
Reiter, Christoph committed
        lngs: ['en', 'de'],
        resource: {
            loadPath: 'src/i18n/{{lng}}/{{ns}}.json',
Reiter, Christoph's avatar
Reiter, Christoph committed
            savePath: 'src/i18n/{{lng}}/{{ns}}.json',
            jsonIndent: 4,
Reiter, Christoph's avatar
Reiter, Christoph committed
};