-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
108 lines (108 loc) · 3.45 KB
/
Copy pathtsconfig.base.json
File metadata and controls
108 lines (108 loc) · 3.45 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"compileOnSave": false,
"compilerOptions": {
"incremental": true,
"declaration": false,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": 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": "es2022",
"paths": {
"@globalfishingwatch/api-client": ["./libs/api-client/dist/index.d.ts"],
"@globalfishingwatch/api-types": ["./libs/api-types/dist/index.d.ts"],
"@globalfishingwatch/data-transforms": ["./libs/data-transforms/dist/index.d.ts"],
"@globalfishingwatch/data-transforms/*": ["./libs/data-transforms/dist/*"],
"@globalfishingwatch/datasets-client": ["./libs/datasets-client/dist/index.d.ts"],
"@globalfishingwatch/dataviews-client": ["./libs/dataviews-client/dist/index.d.ts"],
"@globalfishingwatch/deck-layer-composer": ["./libs/deck-layer-composer/dist/index.d.ts"],
"@globalfishingwatch/deck-layers": ["./libs/deck-layers/dist/index.d.ts"],
"@globalfishingwatch/deck-layers/draw": ["./libs/deck-layers/dist/draw.d.ts"],
"@globalfishingwatch/deck-loaders": ["./libs/deck-loaders/dist/index.d.ts"],
"@globalfishingwatch/i18n-labels": ["./libs/i18n-labels/dist/index.d.ts"],
"@globalfishingwatch/i18n-labels/*": ["./libs/i18n-labels/dist/*"],
"@globalfishingwatch/linting": ["./linting/index.js"],
"@globalfishingwatch/ocean-areas": ["./libs/ocean-areas/dist/index.d.ts"],
"@globalfishingwatch/react-hooks": ["./libs/react-hooks/dist/index.d.ts"],
"@globalfishingwatch/react-hooks/*": ["./libs/react-hooks/dist/*"],
"@globalfishingwatch/responsive-visualizations": [
"./libs/responsive-visualizations/dist/index.d.ts"
],
"@globalfishingwatch/timebar": ["./libs/timebar/dist/index.d.ts"],
"@globalfishingwatch/ui-components": ["./libs/ui-components/dist/index.d.ts"],
"@globalfishingwatch/ui-components/*": ["./libs/ui-components/dist/*"]
}
},
"files": [],
"include": [],
"exclude": [
".pnpm",
".nx",
"node_modules",
"tmp",
"dist",
"exported",
"**/dist/**/*",
"**/exported/**/*",
"**/cypress/**/*",
"**/e2e/**/*",
"**/*.cy.ts",
"**/*.cy.tsx",
"**/jest.config.*",
"**/coverage/**/*",
"**/.turbo/**/*",
"**/build/**/*",
"**/out/**/*",
"**/public/**/*",
"**/assets/**/*",
"**/images/**/*",
"**/cloudbuild/**/*",
"**/Dockerfile*",
"**/docker-compose*.yaml",
"**/nginx.conf",
"**/*.md",
"**/package-lock.json",
"**/pnpm-lock.yaml",
"**/*.yaml",
"**/*.yml",
"**/*.tf",
"**/*.sh",
"**/CHANGELOG.md",
"**/LICENSE",
"**/README.md",
"**/workers/**/*"
],
"watchOptions": {
"watchFile": "useFsEvents",
"watchDirectory": "useFsEvents",
"fallbackPolling": "dynamicPriority",
"synchronousWatchDirectory": false,
"excludeDirectories": [
"**/node_modules",
"**/.next",
"**/dist",
"**/.nx",
"**/.pnpm",
"**/coverage",
"**/.turbo",
"**/build",
"**/out",
"**/exported",
"**/tmp",
"**/cypress",
"**/e2e"
],
"excludeFiles": ["**/*.cy.ts", "**/*.cy.tsx"]
}
}