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