-
Notifications
You must be signed in to change notification settings - Fork 190
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) · 958 Bytes
/
tsconfig.json
File metadata and controls
30 lines (30 loc) · 958 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
{
"compilerOptions": {
"noImplicitAny": true,
"esModuleInterop": true,
"target": "ES6",
"sourceMap": true,
"allowJs": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noImplicitOverride": false, // generated code breaks this
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"declaration": true,
"declarationDir": "./dist/types",
"moduleResolution": "bundler" // helps IDEs
},
"include": ["./src/*.ts"],
"typedocOptions": {
"entryPoints": ["src/**/*.ts"],
"out": "docs",
"exclude": ["src/Messages/signalling_messages.ts"],
"excludeExternals": true,
"excludePrivate": true,
"excludeInternal": true,
"cleanOutputDir": false,
"plugin": "typedoc-plugin-markdown",
"readme": "none"
}
}