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