-
Notifications
You must be signed in to change notification settings - Fork 5
/
tsconfig.json
35 lines (35 loc) · 972 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
29
30
31
32
33
34
35
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"allowJs": false,
"jsx": "react",
"module": "commonjs",
"noImplicitAny": true,
"preserveConstEnums": true,
"removeComments": true,
"sourceMap": false,
"target": "es5",
"resolveJsonModule": true,
"esModuleInterop": true ,
// "suppressImplicitAnyIndexErrors": true,
"downlevelIteration": true,
"typeRoots": [
"./src/types",
"./node_modules/@types"
],
"lib": [ "es2015", "dom" ],
"paths": {
"@shared/*": ["./src/shared/*"],
"@landsat-explorer/*": ["./src/landsat-explorer/*"],
"@landcover-explorer/*": ["./src/landcover-explorer/*"],
"@typing/*": ["./src/types/*"]
}
},
"exclude": [
"**/node_modules",
"**/.*/"
],
"include": [
"./src/**/**/*"
]
}