-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
44 lines (44 loc) · 1.32 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"compilerOptions": {
"target": "es2018",
"module": "commonjs",
"lib": ["es6", "dom"],
"declaration": true,
"outDir": "./dist",
"rootDir": "src",
"strict": true,
// https://github.com/microsoft/TypeScript/wiki/Performance#controlling-types-inclusion:
"types": ["jest"],
"esModuleInterop": true,
// Prevent developers on different OSes from running into problems:
"forceConsistentCasingInFileNames": true,
// Advanced Options
"stripInternal": true
},
"typedocOptions": {
"out": "docs/api/source/api",
"entryPoints": [
// The source files of everything listed under `exports` in our package.json
// (i.e. public API's that should be documented) should be listed here:
"src/interfaces.ts",
"src/websocketNotification.ts",
"src/errors.ts"
],
"exclude": [
"node_modules/**",
"**/*.test.ts",
// Internal helpers:
"**/*.internal.ts",
// End-to-end tests:
"e2e/**",
// Re-exported functions are already documented in their own modules:
"src/index.ts"
],
"theme": "markdown",
"readme": "none",
"entryDocument": "index.rst",
"plugin": ["typedoc-plugin-markdown"]
},
"include": ["src/**/*.ts", ".eslintrc.js"],
"exclude": ["**/node_modules", "tests/**/*.js", "**/*.test.ts"]
}