-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
41 lines (41 loc) · 1.45 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
{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"esModuleInterop": true,
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"noEmit": true,
"strict": true,
"allowJs": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"baseUrl": ".",
"plugins": [{ "name": "next" }],
"noEmitOnError": true,
"paths": {
"@/hooks/*": ["./resource/docs/web/hooks/*"],
"@/icons/*": ["./resource/icons"],
"@/ui/*": ["./resource/docs/web/components/*"],
"@/config/*": ["./resource/docs/web/configurations/*"],
"@/utility/*": ["./resource/docs/web/utility/*"],
"@/modules/*": ["./resource/docs/*"],
"@/*": ["./*"],
"#/*": ["source/*"],
"contentlayer/generated": ["./.contentlayer/generated"],
"contentlayer/*": ["./.contentlayer/*"]
},
"typeRoots": ["resource/docs/*", "./node_modules/@types"]
},
"include": ["./src", "./types", "next-env.d.ts", "**/*.ts", "**/*.tsx", "**/*.md", "**/*.mdx", ".next/types/**/*.ts", "resource/docs/**/*.ts", "resource/docs/**/*.tsx", ".contentlayer/generated", ".notif.ts"],
"exclude": ["node_modules"]
}