forked from TanStack/router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
33 lines (33 loc) · 935 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
31
32
33
{
"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/history": ["packages/history"],
"@tanstack/react-router": ["packages/react-router"],
"@tanstack/router-devtools": ["packages/router-devtools"],
"@tanstack/router-cli": ["packages/router-cli"],
"@tanstack/react-router-server": ["packages/react-router-server"]
}
},
"ts-node": {
"compilerOptions": {
"module": "commonjs",
"esModuleInterop": true
}
}
}