-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
31 lines (31 loc) · 877 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": {
"target": "es2016",
"jsx": "preserve" ,
"module": "commonjs" ,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@/components/*": ["src/components/*"],
"@/public/*": ["src/public/*"],
"@/assets/*": ["src/public/assets/*"],
"@/pages/*": ["src/pages/*"],
"@/styles/*": ["src/styles/*"],
"@/helpers/*": ["src/helpers/*"],
"@/graphql/*": ["src/gql/*"]
},
"esModuleInterop": true ,
"forceConsistentCasingInFileNames": true ,
"strict": true ,
"skipLibCheck": true ,
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"noEmit": true,
"incremental": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules", "src/gql"]
}