generated from worldcoin/minikit-react-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtsconfig.json
37 lines (37 loc) · 1.23 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
{
"compilerOptions": {
"target": "es2017",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"baseUrl": ".",
"paths": {
"@/*": ["./apps/web/src/*"],
"@/app/*": ["./apps/web/src/app/*"],
"@/components/*": ["./apps/web/src/components/*"],
"@/components/ui/*": ["./apps/web/src/components/ui/*"],
"@/components/layout/*": ["./apps/web/src/components/layout/*"],
"@/lib/*": ["./apps/web/src/lib/*"],
"@/providers/*": ["./apps/web/src/providers/*"],
"@/hooks/*": ["./apps/web/src/hooks/*"],
"@/types/*": ["./apps/web/src/types/*"],
"@/services/*": ["./apps/web/src/services/*"],
"@/config/*": ["./apps/web/src/config/*"],
"@/utils/*": ["./apps/web/src/utils/*"],
"@/data/*": ["./apps/web/src/data/*"],
"@/constants/*": ["./apps/web/src/constants/*"]
}
},
"include": ["apps/**/*.ts", "apps/**/*.tsx"],
"exclude": ["node_modules"]
}