-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
58 lines (58 loc) · 2.38 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
57
58
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"jsx": "preserve",
"allowJs": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"types": ["node", "jest"],
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"resolveJsonModule": true,
"isolatedModules": true,
"target": "es5",
"baseUrl": ".",
"lib": ["dom", "dom.iterable", "esnext"],
"skipLibCheck": true,
"module": "esnext",
"moduleResolution": "node",
"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/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/timebar": ["../../libs/timebar/src/index.ts"],
"@globalfishingwatch/ui-components": ["../../libs/ui-components/src/index.ts"],
"@globalfishingwatch/ui-components/*": ["../../libs/ui-components/src/*"]
},
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"strictNullChecks": true
},
"include": [
"**/*.ts",
"**/*.tsx",
"**/*.js",
"**/*.jsx",
"next-env.d.ts",
"../../dist/apps/api-portal/.next/types/**/*.ts",
"eslint.config.mjs"
],
"exclude": ["node_modules", "jest.config.ts", ".next", "exported"]
}