-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
74 lines (69 loc) · 2.67 KB
/
tsconfig.base.json
File metadata and controls
74 lines (69 loc) · 2.67 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
{
"compilerOptions": {
"target": "es2020",
"allowJs": true,
"checkJs": false,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"rootDir": ".",
"useDefineForClassFields": false,
// BEGIN TYPE CHECK SETTINGS
"skipLibCheck": true,
"strict": false,
"noImplicitAny": false,
"noImplicitThis": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"useUnknownInCatchVariables": true,
// "strictNullChecks": true,
// "strictPropertyInitialization": true,
// "exactOptionalPropertyTypes": true, - requires strictNullChecks
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": false,
// END TYPE CHECK SETTINGS
"paths": {
"@math.gl/core/*": ["./modules/core/src/*"],
"@math.gl/core/test/*": ["./modules/core/test/*"],
"@math.gl/culling/*": ["./modules/culling/src/*"],
"@math.gl/culling/test/*": ["./modules/culling/test/*"],
"@math.gl/dggs-pgeohash/*": ["./modules/dggs-pgeohash/src/*"],
"@math.gl/dggs-pgeohash/test/*": ["./modules/dggs-pgeohash/test/*"],
"@math.gl/dggs-s2/*": ["./modules/dggs-s2/src/*"],
"@math.gl/dggs-s2/test/*": ["./modules/dggs-s2/test/*"],
"@math.gl/dggs-quadkey/*": ["./modules/dggs-quadkey/src/*"],
"@math.gl/dggs-quadkey/test/*": ["./modules/dggs-quadkey/test/*"],
"@math.gl/geoid/*": ["./modules/geoid/src/*"],
"@math.gl/geoid/test/*": ["./modules/geoid/test/*"],
"@math.gl/geospatial/*": ["./modules/geospatial/src/*"],
"@math.gl/geospatial/test/*": ["./modules/geospatial/test/*"],
"@math.gl/polygon/*": ["./modules/polygon/src/*"],
"@math.gl/polygon/test/*": ["./modules/polygon/test/*"],
"@math.gl/proj4/*": ["./modules/proj4/src/*"],
"@math.gl/proj4/test/*": ["./modules/proj4/test/*"],
"@math.gl/sun/*": ["./modules/sun/src/*"],
"@math.gl/sun/test/*": ["./modules/sun/test/*"],
"@math.gl/types/*": ["./modules/types/src/*"],
"@math.gl/types/test/*": ["./modules/types/test/*"],
"@math.gl/web-mercator/*": ["./modules/web-mercator/src/*"],
"@math.gl/web-mercator/test/*": ["./modules/web-mercator/test/*"],
"test/*": ["./test/*"]
},
"plugins": [
{
"transform": "@vis.gl/ts-plugins/ts-transform-append-extension",
"extensions": [".js"],
"after": true
},
{
"transform": "@vis.gl/ts-plugins/ts-transform-append-extension",
"extensions": [".js"],
"afterDeclarations": true
}
]
}
}