mirror of
https://github.com/facebook/docusaurus.git
synced 2025-12-26 01:33:02 +00:00
16 lines
469 B
JSON
16 lines
469 B
JSON
{
|
|
// This file is not used in compilation. It is here just for a nice editor experience.
|
|
"extends": "@tsconfig/docusaurus/tsconfig.json",
|
|
"compilerOptions": {
|
|
"lib": ["DOM", "ESNext"],
|
|
"baseUrl": ".",
|
|
"resolveJsonModule": true,
|
|
"strict": true,
|
|
// Work around a type error in react-medium-image-zoom.
|
|
// https://github.com/rpearce/image-zoom/pull/303
|
|
"skipLibCheck": true,
|
|
"types": ["@types/jest"]
|
|
},
|
|
"exclude": ["src/sw.js"]
|
|
}
|