forked from TanStack/table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
27 lines (27 loc) · 887 Bytes
/
tsconfig.base.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"compilerOptions": {
"lib": ["DOM", "DOM.Iterable", "ES2020"],
"target": "ES2020",
"module": "ES2020",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"strict": true,
"noUncheckedIndexedAccess": true,
"strictNullChecks": true,
"jsx": "react",
"declaration": true,
"emitDeclarationOnly": true,
"esModuleInterop": true,
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"@tanstack/table-core": ["packages/table-core"],
"@tanstack/react-table": ["packages/react-table"],
"@tanstack/solid-table": ["packages/solid-table"],
"@tanstack/vue-table": ["packages/vue-table"],
"@tanstack/svelte-table": ["packages/svelte-table"],
"@tanstack/react-table-devtools": ["packages/react-table-devtools"],
"@tanstack/match-sorter-utils": ["packages/match-sorter-utils"]
}
}
}