forked from hurbcom/challenge-charlie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
31 lines (31 loc) · 879 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": "ES2022",
"module": "ESNext",
"lib": ["ESNext","dom"],
"jsx": "react",
"moduleResolution": "node",
"resolveJsonModule": true,
"allowJs": true,
"noEmit": true,
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"paths": {
"@pages/*": ["./src/pages/*"],
"@hooks/*": ["./src/hooks/*"],
"@utils/*": ["./src/utils/*"],
"@enums/*": ["./src/enums/*"],
"@styles/*": ["./src/styles/*"],
"@assets/*": ["./src/assets/*"],
"@contexts/*": ["./src/contexts/*"],
"@services/*": ["./src/services/*"],
"@interfaces/*": ["./src/interfaces/*"],
"@components/*": ["./src/components/*"]
}
},
"include": ["src"]
}