We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c8e3b1 commit 3313ab3Copy full SHA for 3313ab3
.eslintrc.js
@@ -1,9 +1,6 @@
1
-const base = require('@umijs/fabric/dist/eslint');
2
-
3
module.exports = {
4
- ...base,
+ extends: [require.resolve('@umijs/fabric/dist/eslint')],
5
rules: {
6
- ...base.rules,
7
'no-template-curly-in-string': 0,
8
'prefer-promise-reject-errors': 0,
9
'react/no-array-index-key': 0,
src/index.ts
@@ -1,2 +1,2 @@
export { default } from './Pagination';
-export type { PaginationProps } from './interface';
+export type * from './interface';
0 commit comments