forked from ShashiSubramanya/embed-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
49 lines (49 loc) · 1.52 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
{
"compilerOptions": {
"baseUrl": ".",
"jsx": "react",
"module": "esnext",
"target": "es2019",
"lib": ["es6", "dom", "es2016", "es2017", "es2018", "es2019", "es2020"],
"sourceMap": true,
"allowJs": true,
"rootDir": "./",
"outDir": "lib",
"declaration": true,
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": false,
"strictPropertyInitialization": false,
"strictBindCallApply": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"esModuleInterop": true,
"skipLibCheck": true,
"preserveSymlinks": true,
"resolveJsonModule": true,
"importHelpers": true,
"removeComments": false,
"allowSyntheticDefaultImports": true
},
"include": ["src/**/*.ts", "src/**/*.tsx", "custom-typings/**/*.d.ts"],
"exclude": ["node_modules", "../node_modules"],
"typedocOptions": {
"entryPoints": ["src/index.ts"],
"out": "static/typedoc",
"excludePrivate": true,
"excludeProtected": true,
"excludeInternal": true,
"hideGenerator": true,
"categorizeByGroup": false,
"categoryOrder": [
"Search Embed",
"App Embed",
"Liveboards and Charts",
"*"
]
}
}