-
Notifications
You must be signed in to change notification settings - Fork 20
/
tsconfig.json
30 lines (30 loc) · 1.23 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
{
"compilerOptions": {
"baseUrl": ".",
"noEmit": true,
"allowJs": true,
"jsx": "react-jsx",
"module": "CommonJS",
"moduleResolution": "Node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"target": "es2022",
"paths": {
// Import notes about paths for theme-related paths:
// - @theme paths should point to the topmost component, including swizzled versions
// - @theme-original paths should point to the topmost component, exluding swizzled versions
// - @theme-init paths should point to the bottommost component typically the theme or plugin that first provided it
// This means certain instances of these paths may need to supercede /* wildcards.
// https://docusaurus.io/docs/next/advanced/client#theme-aliases
"@theme-original/*": [
"./node_modules/@docusaurus/theme-classic/lib/theme/*"
],
"@theme-init/*": ["./node_modules/@docusaurus/theme-classic/lib/theme/*"],
"@theme/*": ["./node_modules/@docusaurus/theme-classic/lib/theme/*"],
"@docusaurus/*": ["./node_modules/@docusaurus/core/src/client/exports/*"],
"@site/*": ["./*"],
"@generated/*": ["./.docusaurus/*"]
}
}
}