We need to add a linter to the i18n package, we are mainly interested by the jest linting rules so we create a jest eslint config pluggable our other configs and to the i18n eslint config.
8 lines
114 B
TypeScript
8 lines
114 B
TypeScript
export default {
|
|
rootDir: './',
|
|
testEnvironment: 'node',
|
|
transform: {
|
|
'^.+\\.(ts)$': 'ts-jest',
|
|
},
|
|
};
|