-
Notifications
You must be signed in to change notification settings - Fork 9
/
tsconfig.json
48 lines (48 loc) · 1.33 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
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Next.js",
"include": [
"src",
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"tailwind.config.js",
"postcss.config.js"
],
"compilerOptions": {
"baseUrl": ".",
"target": "es2020",
"composite": false,
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"inlineSources": false,
"isolatedModules": true,
"module": "esnext",
"moduleResolution": "node",
"noUnusedLocals": false,
"noUnusedParameters": true,
"preserveWatchOutput": true,
"skipLibCheck": true,
"strict": true,
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"noEmit": true,
"incremental": true,
"resolveJsonModule": true,
"jsx": "preserve",
"paths": {
"@shared/generic-react-hooks": ["./src/shared/generic-react-hooks"],
"@shared/react-components": ["./src/shared/react-components"],
"@shared/ui": ["./src/shared/ui"],
"@shared/types": ["./src/shared/types"],
"@shared/utilities": ["./src/shared/utilities"],
"@components/*": ["./src/components/*"],
"@constants/*": ["./src/constants/*"],
"@hooks/*": ["./src/hooks/*"],
"@pages/*": ["./src/pages/*"]
}
},
"exclude": ["node_modules"]
}