-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
31 lines (31 loc) · 929 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
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"jsx": "react-jsx",
"lib": ["dom", "es2015", "es2017"],
"strict": true,
"noEmit": true,
"isolatedModules": true,
"esModuleInterop": true,
"skipLibCheck": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"removeComments": false,
"baseUrl": ".",
"paths": {
"components/*": ["src/components/*"],
"@components": ["src/components"],
"@utils/*": ["src/utils/*"],
"@sections/*": ["src/sections/*"],
"@pages/*": ["src/pages/*"],
"@theme/*": ["src/theme/*"],
"@images/*": ["src/images/*"],
"@hooks/*": ["src/hooks/*"],
"@type/*": ["src/types/*"],
"@state/*": ["src/state/*"],
"@tests/*": ["src/tests/*"],
},
},
"include": ["./src/**/*", "./custom.d.ts", "./.eslintrc.js", "./gatsby-config.js", "./gatsby-ssr.js", "./gatsby-node.js"]
}