-
Notifications
You must be signed in to change notification settings - Fork 56
/
tsconfig.json
82 lines (76 loc) · 2.83 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"ts-node": {
// It is faster to skip typechecking. Remove if you want ts-node to do typechecking.
"transpileOnly": true
},
"compilerOptions": {
"target": "esnext",
"jsx": "react",
"allowJs": true,
"checkJs": false,
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"noEmit": true,
"baseUrl": ".",
// BEGIN TYPE CHECK SETTINGS
"skipLibCheck": true,
"strict": false,
"noImplicitAny": true, // covered by strict
"noImplicitThis": true, // covered by strict
"strictBindCallApply": true, // covered by strict
"strictFunctionTypes": true, // covered by strict
"useUnknownInCatchVariables": true, // covered by strict
// "strictNullChecks": true, // covered by strict
// "strictPropertyInitialization": true, // covered by strict, requires strict null checks
// "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/geohash/*": ["modules/geohash/src/*"],
"@math.gl/geohash/test/*": ["modules/geohash/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/s2/*": ["modules/s2/src/*"],
"@math.gl/s2/test/*": ["modules/s2/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/quadkey/*": ["modules/quadkey/src/*"],
"@math.gl/quadkey/test/*": ["modules/quadkey/test/*"],
"@math.gl/web-mercator/*": ["modules/web-mercator/src/*"],
"@math.gl/web-mercator/test/*": ["modules/web-mercator/test/*"],
"test/*": ["test/*"]
}
},
"include":[
"modules/*/src",
"modules/*/test"
],
"exclude":[
"modules/core/test",
"modules/polygon/test",
"modules/web-mercator/test",
"test/apps/**/*",
"node_modules",
"**/dist/**/*",
"**/*bench*"
]
}