forked from TanStack/router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
33 lines (33 loc) · 1.03 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
{
"compilerOptions": {
"lib": ["DOM", "DOM.Iterable", "ES2020"],
"target": "ES2020",
"module": "ES2020",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"strict": true,
"jsx": "react",
"declaration": true,
"emitDeclarationOnly": true,
"esModuleInterop": true,
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"@tanstack/react-location": ["packages/react-location"],
"@tanstack/react-location-lite-experimental": [
"packages/react-location-lite-experimental"
],
"@tanstack/react-location-devtools": ["packages/react-location-devtools"],
"@tanstack/react-location-elements-to-routes": [
"packages/react-location-elements-to-routes"
],
"@tanstack/react-location-jsurl": ["packages/react-location-jsurl"],
"@tanstack/react-location-rank-routes": [
"packages/react-location-rank-routes"
],
"@tanstack/react-location-simple-cach": [
"packages/react-location-simple-cache"
]
}
}
}