-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
31 lines (31 loc) · 846 Bytes
/
tsconfig.json
File metadata and controls
31 lines (31 loc) · 846 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
28
29
30
31
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Node 16",
"compilerOptions": {
"baseUrl": ".",
"module": "es2022",
"target": "es2015",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"declaration": true,
"outDir": "./lib",
"declarationDir": "./@types"
},
"include": ["sdk"],
"exclude": ["node_modules", "proto", "@types", "lib", "example"],
"typedocOptions": {
"entryPoints": ["sdk/index.ts"],
"darkHighlightTheme": "github-dark",
"lightHighlightTheme": "github-light",
"entryPointStrategy": "expand",
"out": "docs",
"plugin": ["typedoc-plugin-markdown"],
"readme": "none",
"theme": "default",
"disableSources": true,
"githubPages": false
}
}