Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/examples/tsconfig.json
1028 views
1
{
2
"compilerOptions": {
3
"target": "ES2019",
4
"lib": ["ES2019", "DOM", "DOM.Iterable"],
5
"composite": true,
6
"allowJs": true,
7
"outDir": "../build/examples",
8
"module": "ES2020",
9
"moduleResolution": "node",
10
"esModuleInterop": false,
11
"skipDefaultLibCheck": true,
12
"skipLibCheck": true,
13
"resolveJsonModule": true
14
},
15
"include": ["*.ts"],
16
"exclude": ["**/node_modules", "**/build"]
17
}
18
19