-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
72 lines (72 loc) · 1.67 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"compilerOptions": {
"target": "es2022",
"module": "commonjs",
"moduleResolution": "node",
"outDir": "dist",
"rootDir": "src",
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"skipLibCheck": true,
"strictNullChecks": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@components/*": ["./src/components/*"],
"@lib/*": ["./src/lib/*"],
"@styles/*": ["./src/styles/*"],
"@types/*": ["./src/types/*"],
"@context/*": ["./src/context/*"],
"@services/*": ["./src/services/*"],
"@public/*": ["./src/public/*"]
},
"jsx": "react-jsx",
"jsxImportSource": "react",
"types": [
"node"
],
"declaration": true,
"declarationMap": true,
"isolatedModules": true,
"noEmitOnError": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"strictFunctionTypes": true,
"strictBindCallApply": true
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"next.config.js",
"tailwind.config.js",
"prisma/schema.prisma",
"pages/**/*.ts",
"pages/**/*.tsx",
"components/**/*.ts",
"components/**/*.tsx",
"lib/**/*.ts",
"lib/**/*.tsx",
"styles/**/*.ts",
"styles/**/*.tsx",
"types/**/*.ts",
"types/**/*.tsx",
"context/**/*.ts",
"context/**/*.tsx",
"services/**/*.ts",
"services/**/*.tsx",
"public/**/*.ts",
"public/**/*.tsx"
],
"exclude": [
"node_modules",
"dist",
"**/*.spec.ts",
"**/*.spec.tsx",
"**/*.test.ts",
"**/*.test.tsx"
]
}