generated from pixel-perfect-agency/next-foundation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
49 lines (49 loc) · 1.46 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
{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noUncheckedIndexedAccess": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"incremental": true,
"esModuleInterop": true,
"module": "esnext",
"target": "es2022",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"plugins": [
{
"name": "next"
}
],
"baseUrl": ".",
"paths": {
"~app/*": ["src/app/*"],
"~components/*": ["src/components/*"],
"~contexts/*": ["src/contexts/*"],
"~hooks/*": ["src/hooks/*"],
"~styles/*": ["src/styles/*"],
"~utils/*": ["src/utils/*"],
"~tests/*": ["src/tests/*"],
"~types/*": ["src/types/*"],
"~about/*": ["src/app/(default)/about/*"],
"~insights/*": ["src/app/(default)/insights/*"],
"~projects/*": ["src/app/(default)/projects/*"],
"~/*": ["src/*"],
"contentlayer/generated": ["./.contentlayer/generated"]
}
},
"include": [
"next-env.d.ts",
".next/types/**/*.ts",
"**/*.ts",
"**/*.tsx",
"**/*.js",
".contentlayer/generated"
],
"exclude": ["node_modules"]
}