Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/plugins/default-browser-emulator/injected-scripts/tsconfig.json
1029 views
1
{
2
"extends": "../../../tsconfig.json",
3
"compileOnSave": true,
4
"compilerOptions": {
5
"composite": true,
6
"target": "ES2019",
7
"module": "CommonJS",
8
"lib": ["ES2019", "DOM", "DOM.Iterable"],
9
"noImplicitAny": false,
10
"esModuleInterop": false,
11
"resolveJsonModule": true,
12
"sourceMap": false,
13
"declaration": true,
14
"allowJs": true
15
},
16
"references": [],
17
"include": ["*.ts", "*.js", ".eslintrc.js"],
18
"exclude": [
19
"**/tsconfig*.json",
20
"**/node_modules",
21
"**/dist",
22
"**/build*",
23
"**/replay",
24
"**/website",
25
"**/injected-scripts"
26
]
27
}
28
29