-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
56 lines (56 loc) · 1.71 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
45
46
47
48
49
50
51
52
53
54
55
56
{
"compilerOptions": {
"baseUrl": "./",
"outDir": "dist/",
"rootDir": "src",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"composite": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"noEmitHelpers": true,
"lib": ["dom", "es2016", "es2017"],
"types": [],
"target": "es2015",
"module": "commonjs",
"moduleResolution": "node",
"resolveJsonModule": true,
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": false,
"strict": true,
"strictFunctionTypes": false,
"pretty": true,
"removeComments": false,
"sourceMap": false
},
"include": ["src/**/*", "typings/*", "src/**/*.json"],
// "files": ["src/main.ts", "node_modules/@acryl/acryl-transactions/dist/transactions.d.ts"],
"typedocOptions": {
"name": "js-test-env",
"mode": "file",
"out": "docs",
"readme": "README.md",
// "entryPoint": "global",
// "theme": "./node_modules/typedoc-clarity-theme",
"ignoreCompilerErrors": true,
"includeDeclarations": true,
// "exclude": "**/**/*+(tslib|acryl-crypto|marshall|node|typedoc|events|acryl-transactions)/**/*.ts",
// "exclude": "**/**/*+(generic|index|txToJson|validation).ts",
"excludePrivate": true,
"excludeExternals": true,
"excludeNotExported": true,
"target": "ES6",
"moduleResolution": "node",
"preserveConstEnums": true,
"stripInternal": false,
"suppressExcessPropertyErrors": true,
"suppressImplicitAnyIndexErrors": true,
"module": "commonjs"
}
}