-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
48 lines (48 loc) · 1.39 KB
/
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
40
41
42
43
44
45
46
47
48
{
"compilerOptions": {
"noEmit": true,
"sourceMap": true,
"pretty": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"strict": true,
"removeComments": false,
"moduleResolution": "node",
"module": "esnext",
"target": "esnext",
"jsx": "react",
"baseUrl": ".",
"paths": {
"common/*": ["src/components/common/*"],
"modules/*": ["src/components/modules/*"],
"pages/*": ["src/components/pages/*"],
"layouts": ["src/components/layouts/index"],
"client": ["src/queryClient"],
"config/*": ["config/*"],
"config": ["config/index"],
"images/*": ["src/static/images/*"],
"hooks": ["src/services/hooks/index"],
"hooks/*": ["src/services/hooks/*"],
"server": ["server/index"],
"services/*": ["src/services/*"],
"services": ["src/services/index"],
"queries/*": ["src/queries/*"],
"store": ["src/store"],
"styles/*": ["src/styles/*"],
"styles": ["src/styles/index"],
"types": ["src/types/index"],
"vectors/*": ["src/static/vectors/*"]
},
"typeRoots": ["node_modules/@types"],
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"plugins": [
{
"name": "ts-graphql-plugin",
"schema": "src/__generated__/gatsby-schema.graphql",
"tag": "graphql"
}
]
}
}