forked from cosmos/amino-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
28 lines (28 loc) · 919 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
{
"compilerOptions": {
"declaration": true,
"declarationDir": "types",
"emitDeclarationOnly": true,
"esModuleInterop": true,
"module": "CommonJS",
"moduleResolution": "Node",
"strict": true,
"strictPropertyInitialization": false,
"target": "ESNext"
},
"include": [
"index.ts",
"src/**/*.ts",
"lib/types.ts"
],
"typedocOptions": {
"out": "docs",
"mode": "file",
"readme": "none",
"ignoreCompilerErrors": true,
"includeDeclarations": true,
"excludeNotExported": true,
"excludeExternals": true,
"listInvalidSymbolLinks": true
}
}