-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (23 loc) · 935 Bytes
/
tsconfig.json
File metadata and controls
27 lines (23 loc) · 935 Bytes
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
// 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"],
"types": ["@docusaurus/theme-classic"],
},
"include": [
"./src/**/*.ts",
"./src/**/*.tsx",
"./static/js/*.js",
"sidebars.ts",
],
}