-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
39 lines (39 loc) · 977 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
31
32
33
34
35
36
37
38
39
{
"compilerOptions": {
"allowJs": true,
"baseUrl": ".",
"esModuleInterop": true,
"jsxImportSource": "@emotion/react",
"jsx": "react-jsx",
"lib": ["DOM", "ESNext"],
"module": "ESNext",
"moduleResolution": "node",
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"paths": {
"@assets/*": ["src/assets/*"],
"@components/*": ["src/components/*"],
"@config": ["src/config"],
"@contexts/*": ["src/contexts/*"],
"@head": ["src/head"],
"@hooks/*": ["src/hooks/*"],
"@layout": ["src/layout"],
"@templates/*": ["src/templates/*"],
"@theme": ["src/theme"],
"@theme/*": ["src/theme/*"]
},
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "ESNext"
},
"include": [
"src",
"gatsby-browser.tsx",
"gatsby-config.ts",
"gatsby-node.ts",
"gatsby-ssr.tsx"
]
}