forked from TanStack/router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
27 lines (27 loc) · 828 Bytes
/
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
{
"compilerOptions": {
"esModuleInterop": true,
"isolatedModules": true,
"jsx": "react",
"lib": ["ESNext", "dom"],
"target": "es5",
"noEmit": true,
"noImplicitAny": true,
"noImplicitReturns": false,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noUncheckedIndexedAccess": true,
"skipLibCheck": true,
"strict": true,
"types": ["jest", "node"],
"paths": {
"react-location": ["./packages/react-location"],
"react-location-devtools": ["./packages/react-location-devtools"],
"react-location-simple-cache": ["./packages/react-location-simple-cache"],
"react-location-rank-routes": ["./packages/react-location-rank-routes"]
}
},
"include": ["./packages/*/src/*"]
// "exclude": ["./examples", "./test"]
}