-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
executable file
·44 lines (44 loc) · 982 Bytes
/
tsconfig.json
File metadata and controls
executable file
·44 lines (44 loc) · 982 Bytes
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
{
"compilerOptions": {
"target": "ES6",
"module": "commonjs",
"moduleResolution": "node",
"jsx": "preserve",
"strict": false,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true, // Allow JavaScript files (for JSX)
"checkJs": false, // Check JavaScript files for errors
"esModuleInterop": true,
"noEmit": true, // Don't emit output; used for type checking only
"resolveJsonModule": true,
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"incremental": true,
"isolatedModules": true,
"plugins": [
{
"name": "next"
}
],
"baseUrl": ".", // This sets the base directory for resolving paths
"paths": {
"@/*": [
"./*"
] // Maps "@/..." to the root directory
}
},
"include": [
"app/**/*",
"components/**/*",
"lib/**/*",
".next/types/**/*.ts",
"context"
],
"exclude": [
"node_modules"
]
}