-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
41 lines (41 loc) · 1.19 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
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"declaration": true,
"removeComments": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"skipLibCheck": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"noEmitHelpers": true,
"noEmitOnError": false,
"noImplicitAny": false,
"noImplicitReturns": false,
"noImplicitUseStrict": false,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"lib": ["esnext", "dom"],
"baseUrl": ".",
"outDir": "build",
"paths": {
"*": ["src/types/*"]
}
},
"typedocOptions": {
"name": "LokAPI",
"includeVersion": true,
"readme": "./README.md",
"entryPoints": ["./src"],
"excludePrivate": true,
"excludeProtected": true,
"hideGenerator": true,
"out": "docs"
},
"include": ["src/**/*", "references.d.ts"],
"exclude": ["node_modules", "platforms", "**/angular"]
}