Skip to content

Commit ff87004

Browse files
committed
fix tsconfig
1 parent 57405f8 commit ff87004

File tree

4 files changed

+15
-13
lines changed

4 files changed

+15
-13
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "frame-one-table",
3-
"version": "0.3.6",
3+
"version": "0.3.7",
44
"description": "A react table with maximum flexibility.",
55
"main": "build/index.js",
66
"module": "build/index.es.js",

src/index.ts

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,28 +7,30 @@ import * as ContextTypes from "./contextTypes";
77
import {ISortStyle, SortOrder, sortTableData} from "./utils/sorting";
88
import Loader, {ILoaderProps} from "./Loader";
99

10-
export type {
10+
export {
1111
TableGenerator,
12-
ColumnOption,
13-
TableGeneratorProps,
1412

1513
TableHeader,
16-
ITableHeaderProps,
1714

1815
TableRow,
19-
ITableRowProps,
2016

2117
Paginator,
2218
IPaginatorProps,
2319

2420
TableRowManager,
21+
sortTableData,
2522

26-
ContextTypes,
23+
Loader,
24+
}
2725

28-
sortTableData,
26+
export type {
27+
ContextTypes,
28+
ColumnOption,
29+
TableGeneratorProps,
30+
ITableHeaderProps,
31+
ITableRowProps,
32+
IPaginatorProps,
2933
ISortStyle,
3034
SortOrder,
31-
32-
Loader,
3335
ILoaderProps,
3436
}

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
"noFallthroughCasesInSwitch": true,
1717
"module": "esnext",
1818
"moduleResolution": "node",
19-
"resolveJsonModule": true,
19+
"resolveJsonModule": false,
2020
"isolatedModules": true,
21-
"noEmit": true,
21+
"noEmit": false,
2222
"jsx": "react-jsx",
2323
"declaration": true
2424
},

0 commit comments

Comments
 (0)