-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
34 lines (34 loc) · 952 Bytes
/
tsconfig.base.json
File metadata and controls
34 lines (34 loc) · 952 Bytes
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
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": ".",
"rootDir": ".",
"declaration": true,
"declarationMap": true,
"emitDeclarationOnly": true,
"isolatedModules": true,
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"strict": true,
"skipLibCheck": true,
"jsx": "react-jsx",
"allowJs": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "bundler",
"module": "es2015",
"types": ["vite/client", "node"],
"composite": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"target": "ES2023",
"paths": {
"@mapcomponents/deck-gl": ["packages/deck-gl/src/index.ts"],
"@mapcomponents/ra-geospatial": ["packages/ra-geospatial/src/index.ts"],
"@mapcomponents/react-maplibre": ["packages/react-maplibre/src/index.ts"],
"@mapcomponents/three": ["packages/three/src/index.ts"]
}
}
}