Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
giswqs
GitHub Repository: giswqs/geemap
Path: blob/master/tsconfig.webpack.json
2313 views
1
{
2
"include": [
3
"js",
4
"tests"
5
],
6
"compilerOptions": {
7
"target": "ES2020",
8
"module": "ESNext",
9
"lib": [
10
"ES2020",
11
"DOM",
12
"DOM.Iterable"
13
],
14
"skipLibCheck": true,
15
"moduleResolution": "bundler",
16
"allowImportingTsExtensions": false,
17
"resolveJsonModule": true,
18
"isolatedModules": true,
19
"noEmit": false,
20
"strict": true,
21
"sourceMap": true,
22
"noUnusedLocals": true,
23
"noUnusedParameters": true,
24
"noFallthroughCasesInSwitch": true,
25
"downlevelIteration": true,
26
"experimentalDecorators": true,
27
"emitDecoratorMetadata": true,
28
}
29
}
30