-
Notifications
You must be signed in to change notification settings - Fork 23
/
tsconfig.json
69 lines (62 loc) · 1.88 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
{
"compilerOptions": {
/* Visit https://aka.ms/tsconfig.json to read more about this file */
/* Basic Options */
"target": "es6",
"module": "commonjs",
"lib": ["DOM", "ESNext", "WebWorker"],
"allowJs": false,
"checkJs": false,
"jsx": "preserve",
"declaration": true,
"declarationMap": false,
"sourceMap": true,
"removeComments": false,
"noEmit": false,
"importHelpers": true,
"downlevelIteration": true,
"isolatedModules": false,
/* Strict Type-Checking Options */
"strict": true,
"noImplicitAny": false,
// "strictNullChecks": false,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
/* Additional Checks */
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": false,
"noImplicitOverride": false,
"noPropertyAccessFromIndexSignature": true,
/* Module Resolution Options */
"moduleResolution": "node",
"baseUrl": ".",
"paths": {
"@antv/l7plot": ["packages/l7plot/src"],
"@antv/l7plot-component": ["packages/component/src"],
"@antv/l7-composite-layers": ["packages/composite-layers/src"]
},
"rootDirs": [],
// "types": [],
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"resolveJsonModule": true,
// "allowUmdGlobalAccess": true,
/* Source Map Options */
"inlineSourceMap": false,
"inlineSources": false,
/* Experimental Options */
"experimentalDecorators": true,
"emitDecoratorMetadata": false,
/* Advanced Options */
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": ["packages", "storybook", "website"],
"exclude": ["packages/*/dist/**", "coverage"]
}