mirror of
https://github.com/facebook/docusaurus.git
synced 2025-04-29 02:08:36 +02:00
17 lines
653 B
JSON
17 lines
653 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,
|
|
// This is important. We run `yarn tsc` in website so we can catch issues
|
|
// with our declaration files (mostly names that are forgotten to be
|
|
// imported, invalid semantics...). Because we don't have end-to-end type
|
|
// tests, removing this would make things much harder to catch.
|
|
"skipLibCheck": false,
|
|
"types": ["@types/jest"]
|
|
},
|
|
"exclude": ["src/sw.js"]
|
|
}
|