-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
executable file
·61 lines (61 loc) · 1.87 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
{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"removeComments": false,
"preserveConstEnums": true,
"strict": false,
"alwaysStrict": false,
"strictNullChecks": false,
"noUncheckedIndexedAccess": false,
"noImplicitAny": false,
"noImplicitReturns": false,
"noImplicitThis": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"allowUnreachableCode": true,
"noFallthroughCasesInSwitch": false,
"target": "es2017",
"outDir": "out",
"sourceMap": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"allowJs": true,
"checkJs": false,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"jsx": "preserve",
"noEmit": false,
"isolatedModules": true,
"incremental": false,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@/public/*": ["./public/*"],
"@ui/*": ["./src/components/ui/*"],
"@c/*": ["./src/components/*"],
"@mark/*": ["./src/components/marketing/*"],
"@dash/*": ["./src/components/dashboard/*"],
"@shadcn": ["./src/components/ui"],
"contentlayer/generated": ["./.contentlayer/generated"]
},
"plugins": [
{
"name": "next"
}
]
},
"exclude": ["./out/**/*", "./node_modules/**/*"],
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"**/*.mts",
"src/components/theme/shells/CustomPopover.tsx",
".contentlayer/generated",
"src/components/ui/dropdown-menu.tsx"
]
}