-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathtsconfig.json
More file actions
42 lines (42 loc) · 1.03 KB
/
tsconfig.json
File metadata and controls
42 lines (42 loc) · 1.03 KB
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
{
"compilerOptions": {
"target": "ES2020",
"lib": ["ES2023", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "bundler",
"allowJs": false,
"skipLibCheck": true,
"strict": true,
"noImplicitAny": true,
"noEmit": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"paths": {
"@/*": ["./src/app/*"],
"@lib/*": ["./src/app/lib/*"],
"@providers/*": ["./src/app/providers/*"],
"@i18n/*": ["./src/app/i18n/*"],
"@components/*": ["./src/app/components/*"],
"@db/*": ["./src/app/db/*"],
"@auth": ["./src/auth.ts"],
"@emails/*": ["./src/app/emails/*"],
"@setup/*": ["./src/app/setup/*"]
},
"incremental": true,
"plugins": [
{
"name": "next"
}
]
},
"include": [
"src",
"next-env.d.ts",
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": ["node_modules", "storage"]
}