-
-
Notifications
You must be signed in to change notification settings - Fork 3k
/
Copy pathtsconfig.json
82 lines (82 loc) · 2.91 KB
/
tsconfig.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"checkJs": true,
"composite": true,
"declaration": true,
"declarationMap": true,
"emitDeclarationOnly": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"isolatedModules": true,
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"module": "ES2022",
"moduleResolution": "Node",
"noEmit": false,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "ES2020",
"paths": {
"@tanstack/angular-query-devtools-experimental": [
"../../packages/angular-query-devtools-experimental/src"
],
"@tanstack/angular-query-experimental": [
"../../packages/angular-query-experimental/src"
],
"@tanstack/eslint-plugin-query": [
"../../packages/eslint-plugin-query/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-core": ["../../packages/query-core/src"],
"@tanstack/query-devtools": ["../../packages/query-devtools/src"],
"@tanstack/query-persist-client-core": [
"../../packages/query-persist-client-core/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-next-experimental": [
"../../packages/react-query-next-experimental/src"
],
"@tanstack/react-query-persist-client": [
"../../packages/react-query-persist-client/src"
],
"@tanstack/solid-query": ["../../packages/solid-query/src"],
"@tanstack/solid-query-devtools": [
"../../packages/solid-query-devtools/src"
],
"@tanstack/solid-query-persist-client": [
"../../packages/solid-query-persist-client/src"
],
"@tanstack/svelte-query": ["../../packages/svelte-query/src"],
"@tanstack/svelte-query-devtools": [
"../../packages/svelte-query-devtools/src"
],
"@tanstack/svelte-query-persist-client": [
"../../packages/svelte-query-persist-client/src"
],
"@tanstack/vue-query": ["../../packages/vue-query/src"],
"@tanstack/vue-query-devtools": ["../../packages/vue-query-devtools/src"]
}
},
"include": ["eslint.config.js", "prettier.config.js"]
}