-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
41 lines (41 loc) · 1.42 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
{
"compilerOptions": {
"lib": ["DOM", "DOM.Iterable", "ES2020"],
"target": "ES2020",
"module": "ES2020",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"strict": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noUncheckedIndexedAccess": true,
"strictNullChecks": true,
"jsx": "react",
"declaration": true,
"emitDeclarationOnly": true,
"esModuleInterop": true,
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"@tanstack/query-core": ["packages/query-core/src"],
"@tanstack/query-persist-client-core": ["packages/query-persist-client-core/src"],
"@tanstack/query-async-storage-persister": [
"packages/query-async-storage-persister/src"
],
"@tanstack/query-broadcast-client-experimental": ["packages/query-broadcast-client-experimental/src"],
"@tanstack/query-sync-storage-persister": [
"packages/query-sync-storage-persister/src"
],
"@tanstack/react-query": ["packages/react-query/src"],
"@tanstack/react-query-devtools": ["packages/react-query-devtools/src"],
"@tanstack/react-query-persist-client": [
"packages/react-query-persist-client/src"
],
"@tanstack/solid-query": ["packages/solid-query/src"],
"@tanstack/vue-query": ["packages/vue-query/src"],
}
}
}