forked from keplergl/kepler.gl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
56 lines (55 loc) · 1.31 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": {
"target": "es2020",
"allowJs": true,
"checkJs": true,
"jsx": "react",
"noEmit": true,
"module": "esnext",
"moduleResolution": "node",
"noImplicitAny": false,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"outDir": "build/dist",
"sourceMap": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": false,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"strict": true,
"resolveJsonModule": true,
"isolatedModules": true,
"baseUrl": "./src",
"paths": {
"*": ["*"]
}
},
"paths": {
"actions": "src/actions",
"actions/*": "src/actions/*",
"reducers": "src/reducers",
"reducers/*": "src/reducers/*"
},
"include": [
"src/actions",
"src/cloud-providers",
"src/processors",
"src/reducers",
"src/schemas",
"src/utils",
"src/components/common/file-uploader",
"src/components/common/progress-bar.js",
"src/components/modals/load-data-modal.js",
"src/components/modal-container.js",
"src/components/kepler.gl"
// TODO: add types
// "src/constants",
// "src/deckgl-layers",
// "src/layers"
// "src/localization",
// "src/middleware",
// "src/tasks"
]
}