-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathtsconfig.json
36 lines (36 loc) · 1.31 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
{
// This file is not used in compilation. It is here just for a nice editor experience.
"extends": "@tsconfig/docusaurus/tsconfig.json",
"include": ["src", "declarations.d.ts", "utils", "**/*.mdx",],
"exclude": ["src/deprecated"],
"compilerOptions": {
"types": ["node", "jest", "@testing-library/jest-dom", "mdx"],
"esModuleInterop": true,
"target": "es6",
"module": "Node16",
"jsx": "react",
"baseUrl": ".",
"noImplicitAny": true,
"strictNullChecks": true,
"allowJs": true,
"checkJs": false,
"resolveJsonModule": true,
"plugins": [
{
"name": "typescript-plugin-css-modules"
}
],
"paths": {
"@theme/IdealImage": ["node_modules/@docusaurus/plugin-ideal-image/src/theme/IdealImage/index.tsx"],
"@site/src/*": ["src/*"],
"@site/static/*": ["static/*"],
"@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/*"],
"@theme/ThemedImage": ["node_modules/@docusaurus/theme-classic/src/theme/*"],
"@docusaurus/*": ["./node_modules/@docusaurus/core/src/client/exports/*"],
"@site/*": ["./*"],
"@generated/*": ["./.docusaurus/*"]
}
}
}