-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathtsconfig.json
28 lines (24 loc) · 950 Bytes
/
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
// A TypeScript configuration file for Docusaurus. It is not used for compilation. It is just used
// by VSCode.
{
"$schema": "https://raw.githubusercontent.com/complete-ts/complete/main/packages/complete-tsconfig/schemas/tsconfig-strict-schema.json",
"extends": [
// https://github.com/complete-ts/complete/blob/main/packages/complete-tsconfig/tsconfig.base.json
"complete-tsconfig/tsconfig.base.json",
// https://github.com/facebook/docusaurus/blob/main/packages/docusaurus-tsconfig/tsconfig.json
"@docusaurus/tsconfig",
],
// https://www.typescriptlang.org/docs/handbook/compiler-options.html
"compilerOptions": {
// We enable "ES2021" to provide support for `String.replaceAll` in TypeDoc configuration files.
"lib": ["DOM", "ES2021"],
},
"include": [
"./src/**/*.ts",
"./src/**/*.tsx",
"./static/js/*.js",
"docusaurus.config.ts",
"sidebars.ts",
"typedoc.config.base.mjs",
],
}