web/packages/clipper/.eslintrc.js
2023-04-11 22:14:02 +05:30

17 lines
338 B
JavaScript

module.exports = {
root: true,
extends: ['../../common.eslintrc.js'],
parserOptions: {
project: './tsconfig.json',
tsconfigRootDir: __dirname,
},
ignorePatterns: ['**/*.spec.ts', '__mocks__'],
plugins: ['@typescript-eslint', 'prettier'],
env: {
browser: true,
},
globals: {
__WEB_VERSION__: true,
},
}