-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
63 lines (63 loc) · 1.7 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"compilerOptions": {
"baseUrl": ".",
"target": "es5",
"lib": ["es6", "dom"],
"strict": true,
"noEmit": true,
"allowJs": true,
"jsx": "preserve",
"module": "esnext",
"incremental": true,
"skipLibCheck": true,
"noImplicitAny": true,
"noImplicitThis": true,
"esModuleInterop": true,
"isolatedModules": true,
"strictNullChecks": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"useUnknownInCatchVariables": false,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"~assets/*": ["./src/assets/*"],
"~auth/*": ["./src/config/auth/*"],
"~helper/*": ["./src/config/helper/*"],
"~locales/*": ["./src/config/locales/*"],
"~routes/*": ["./src/config/routes"],
"~theme/*": ["./src/config/theme/*"],
"~utils/*": ["./src/config/utils/*"],
"~config/*": ["./src/config/*"],
"~hooks/*": ["./src/hooks/*"],
"~pages/*": ["pages/*"],
"~layouts/*": ["./src/screens/layouts/*"],
"~components/*": ["./src/screens/shared/components/*"],
"~screens/*": ["./src/screens/*"],
"~store/*": ["./src/store/*"],
"~services/*": ["./src/services/*"],
"~styles/*": ["./src/styles/*"]
},
"plugins": [
{
"transform": "typescript-transform-paths"
},
{
"transform": "typescript-transform-paths",
"afterDeclarations": true
},
{
"name": "next"
}
]
},
"exclude": ["node_modules"],
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"pages/dashboard/user-managment"
]
}