forked from pixelbakery/pixelbakery-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
50 lines (50 loc) · 1.83 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
{
"compilerOptions": {
"baseUrl": "",
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"checkJs": false,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"paths": {
"@parts/*": ["components/parts/*"],
"@data/*": ["data/*"],
"@footer/*": ["components/footer/*"],
"@about/*": ["components/pageSpecific/about/*"],
"@careers/*": ["components/pageSpecific/careers/*"],
"@caseStudies/*": ["components/pageSpecific/caseStudies/*"],
"@contact/*": ["components/pageSpecific/contact/*"],
"@education/*": ["components/pageSpecific/education/*"],
"@home/*": ["components/pageSpecific/home/*"],
"@onboarding/*": ["components/pageSpecific/onboarding/*"],
"@recipes/*": ["components/pageSpecific/recipes/*"],
"@services/*": ["components/pageSpecific/services/*"],
"@footerParts/*": ["components/footerParts/*"],
"@work/*": ["components/pageSpecific/work/*"],
"@store/*": ["components/store/*"],
"@sitemap/*": ["components/sitemap/*"],
"@images/*": ["components/images/*"],
// "@socialIcons/*": ["components/images/Icons_Social/Icons/*"],
"@logoAnimation/*": ["components/pageSpecific/logoAnimation/*"],
"@pageHeaders/*": ["components/pageHeaders/*"],
"@nav/*": ["components/nav/*"],
"@lib/*": ["lib/*"],
"@types/*": ["types/*"],
"@hooks/*": ["hooks/*"],
"@styles/*": ["styles/*"],
"@typography/*": ["components/typography/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}