forked from maplibre/maplibre-gl-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
54 lines (54 loc) · 1.06 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
{
"compilerOptions": {
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"allowSyntheticDefaultImports": true,
"checkJs": true,
"isolatedModules": false,
"noEmit": true,
"esModuleInterop": true,
"importHelpers": false,
"jsx": "react",
"module": "ESNext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"skipLibCheck": false,
"strict": false,
"target": "ES2016",
"lib": [
"ESNext",
"DOM",
"DOM.Iterable"
],
"types": [
"geojson",
"offscreencanvas",
"jest"
]
},
"ts-node": {
"experimentalSpecifierResolution": "node",
"esm": true,
"compilerOptions": {
"target": "es2019",
"types": [
"node"
]
}
},
"include": [
"rollup.config.*",
"src/**/*",
"test/bench/**/*",
"test/integration/**/*"
],
"exclude": [
"node_modules",
"dist",
"build/rollup",
"test/bench/rollup",
"test/bench/run-benchmarks.ts",
"test/bench/gl-stats.ts" ,
"test/bench/**/*generated*"
]
}