The package i18n will handle the internationalization of the applications. It will parse the frontend code and extract the translations to be send to the crowdin platform.
12 lines
273 B
JavaScript
12 lines
273 B
JavaScript
module.exports = {
|
|
root: true,
|
|
extends: ['impress/jest', 'plugin:import/recommended'],
|
|
parserOptions: {
|
|
sourceType: 'module',
|
|
ecmaVersion: 'latest',
|
|
tsconfigRootDir: __dirname,
|
|
project: ['./tsconfig.json'],
|
|
},
|
|
ignorePatterns: ['node_modules'],
|
|
};
|