-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
30 lines (30 loc) · 1017 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
28
29
30
{
"compilerOptions": {
"target": "esnext",
"lib": ["dom", "esnext"],
"jsx": "react",
"module": "esnext",
"moduleResolution": "node",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"strict": true,
"skipLibCheck": true,
"noImplicitAny": true,
"paths": {
"~/*": ["./src/*"],
"$hooks/*": ["./src/hooks/*"],
"$shared/*": ["./src/components/shared/*"],
"$utils/*": ["./src/utils/*"],
"$cobalt/*": ["./src/components/pages/cobalt/*"],
"$golem/*": ["./src/components/pages/golem/*"],
"$hive/*": ["./src/components/pages/hive/*"],
"$hux/*": ["./src/components/pages/huxtaburger/*"],
"$streamr": ["./src/components/pages/streamr"],
"$streamr/*": ["./src/components/pages/streamr/*"],
"$vizor/*": ["./src/components/pages/vizor/*"],
"$team/*": ["./src/components/pages/team/*"]
}
},
"include": ["src", "gatsby-node.ts", "gatsby-config.ts", "types"]
}