-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtsconfig.base.json
58 lines (58 loc) · 2.29 KB
/
tsconfig.base.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
57
58
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": ".",
"incremental": true,
"declaration": false,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"importHelpers": true,
"jsx": "preserve",
"lib": ["es2020", "dom", "esnext"],
"module": "esnext",
"moduleResolution": "node",
"noPropertyAccessFromIndexSignature": false,
"resolveJsonModule": true,
"rootDir": ".",
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"sourceMap": true,
"target": "es2020",
"paths": {
"@globalfishingwatch/api-client": ["libs/api-client/src/index.ts"],
"@globalfishingwatch/api-types": ["libs/api-types/src/index.ts"],
"@globalfishingwatch/data-transforms": ["libs/data-transforms/src/index.ts"],
"@globalfishingwatch/datasets-client": ["libs/datasets-client/src/index.ts"],
"@globalfishingwatch/dataviews-client": ["libs/dataviews-client/src/index.ts"],
"@globalfishingwatch/deck-layer-composer": ["libs/deck-layer-composer/src/index.ts"],
"@globalfishingwatch/deck-layers": ["libs/deck-layers/src/index.ts"],
"@globalfishingwatch/deck-loaders": ["libs/deck-loaders/src/index.ts"],
"@globalfishingwatch/fourwings-aggregate": ["libs/fourwings-aggregate/src/index.ts"],
"@globalfishingwatch/i18n-labels": ["libs/i18n-labels/index.ts"],
"@globalfishingwatch/i18n-labels/*": ["libs/i18n-labels/*"],
"@globalfishingwatch/layer-composer": ["libs/layer-composer/src/index.ts"],
"@globalfishingwatch/linting": ["linting/index.js"],
"@globalfishingwatch/ocean-areas": ["libs/ocean-areas/src/index.ts"],
"@globalfishingwatch/pbf-decoders": ["libs/pbf-decoders/index.ts"],
"@globalfishingwatch/react-hooks": ["libs/react-hooks/src/index.ts"],
"@globalfishingwatch/react-hooks/*": ["libs/react-hooks/src/*"],
"@globalfishingwatch/timebar": ["libs/timebar/src/index.ts"],
"@globalfishingwatch/ui-components": ["libs/ui-components/src/index.ts"],
"@globalfishingwatch/ui-components/*": ["libs/ui-components/src/*"]
}
},
"files": ["./vendors.d.ts"],
"exclude": [
".yarn",
".nx",
"node_modules",
"tmp",
"dist",
".next",
"exported",
"**/dist/**/*",
"**/.next/**/*",
"**/exported/**/*"
]
}