-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtsconfig.json
75 lines (75 loc) · 2.97 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"compilerOptions": {
"baseUrl": ".",
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"checkJs": false,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"paths": {
"@forms": ["components/forms/forms_parts/index"],
"@fonts/*": ["fonts/*"],
"@SocialIcons/*": ["./components/icons/icons_social"],
"@SocialIcons": ["./components/icons/icons_social/index"],
"@icons": ["./components/icons/Icons_UI/index"],
"@parts/*": ["./components/parts/*"],
"@parts": ["./components/parts/index"],
"@components/*": ["components/components/*"],
"@data/*": ["data/*"],
"@layouts": ["./components/layouts/index"],
"@data": ["data/index"],
"@footer": ["./components/footer/index"],
"@about/*": ["./components/pageSpecific/about/*"],
"@about": ["./components/pageSpecific/about/index"],
"@careers/*": ["components/pageSpecific/careers/*"],
"@caseStudies": ["./components/pageSpecific/caseStudies/index"],
"@caseStudies/*": ["./components/pageSpecific/caseStudies/*"],
"@contact/*": ["components/pageSpecific/contact/*"],
"@contact": ["./components/pageSpecific/contact/index"],
"@education/*": ["components/pageSpecific/education/*"],
"@education": ["components/pageSpecific/education/index"],
"@industries/*": ["components/pageSpecific/industries/*"],
"@home/*": ["components/pageSpecific/home/*"],
"@onboarding/*": ["components/pageSpecific/onboarding/*"],
"@recipes/*": ["components/pageSpecific/recipes/*"],
"@recipes": ["components/pageSpecific/recipes/index"],
"@services/*": ["components/pageSpecific/services/*"],
"@services": ["components/pageSpecific/services/index"],
"@footerParts/*": ["components/footerParts/*"],
"@work/*": ["components/pageSpecific/work/*"],
"@work": ["components/pageSpecific/work/index"],
"@sitemap/*": ["components/sitemap/*"],
"@images/*": ["components/images/*"],
"@logoAnimation/*": ["components/pageSpecific/logoAnimation/*"],
"@pageHeaders/*": ["components/pageHeaders/*"],
"@nav/*": ["components/nav/*"],
"@lib/*": ["lib/*"],
"@lib": ["lib/index"],
"@types": ["./types/index"],
"@styles/*": ["styles/*"],
"@typography/*": ["components/typography/*"],
"@typography": ["./components/typography/index"],
"@utility/*": ["components/utility/*"],
"@utility": ["components/utility/index"],
"@/*": ["./*"]
}
},
"plugins": [
{
"name": "next"
}
],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "pages/_error.js", "fonts/**/*"],
"exclude": ["node_modules"],
"moduleResolution": ["node_modules", ".next", "node"]
}