docusaurus/website/tsconfig.json
2022-04-11 07:43:30 +08:00

17 lines
573 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 name that are forgotten to be
// imported). Removing this would make things harder to catch.
"skipLibCheck": false,
"types": ["@types/jest"]
},
"exclude": ["src/sw.js"]
}