forked from TanStack/virtual
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
30 lines (30 loc) · 928 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
28
29
30
{
"compilerOptions": {
"lib": ["DOM", "DOM.Iterable", "ES2020"],
"target": "ES2020",
"module": "ES2020",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"strict": true,
"noImplicitAny": true,
"noImplicitReturns": false,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noUncheckedIndexedAccess": true,
"strictNullChecks": true,
"jsx": "react",
"declaration": true,
"emitDeclarationOnly": true,
"esModuleInterop": true,
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"@tanstack/react-virtual": ["packages/react-virtual/src"],
"@tanstack/solid-virtual": ["packages/solid-virtual/src"],
"@tanstack/svelte-virtual": ["packages/svelte-virtual/src"],
"@tanstack/vue-virtual": ["packages/vue-virtual/src"],
"@tanstack/virtual-core": ["packages/virtual-core/src"]
}
}
}