forked from TanStack/router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
39 lines (39 loc) · 1.22 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
{
"compilerOptions": {
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"target": "ES2020",
"module": "ES2020",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"strict": true,
"noUncheckedIndexedAccess": true,
"strictNullChecks": true,
"jsx": "react",
"declaration": true,
"emitDeclarationOnly": true,
"noImplicitReturns": true,
"esModuleInterop": true,
"skipLibCheck": true,
"baseUrl": ".",
"allowUnreachableCode": true,
"paths": {
"@tanstack/router-core": ["packages/router-core"],
"@tanstack/react-router": ["packages/react-router"],
"@tanstack/solid-router": ["packages/solid-router"],
"@tanstack/router-devtools": ["packages/router-devtools"],
"@tanstack/loaders": ["packages/loaders"],
"@tanstack/react-loaders": ["packages/react-loaders"],
"@tanstack/actions": ["packages/actions"],
"@tanstack/react-actions": ["packages/react-actions"],
"@tanstack/store": ["packages/store"],
"@tanstack/react-store": ["packages/react-store"],
"@tanstack/router-cli": ["packages/router-cli"]
}
},
"ts-node": {
"compilerOptions": {
"module": "commonjs",
"esModuleInterop": true
}
}
}