Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/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
{
24
"path": "core/injected-scripts/tsconfig.json"
25
},
26
{
27
"path": "replay/tsconfig.json"
28
},
29
{
30
"path": "plugins/default-browser-emulator/injected-scripts/tsconfig.json"
31
}
32
],
33
"include": ["**/*.ts", "**/*.js", "**/*.json", ".eslintrc.js"],
34
"exclude": [
35
"**/tsconfig*.json",
36
"node_modules",
37
"**/node_modules",
38
"**/dist",
39
"**/build",
40
"build",
41
"build-dist",
42
"replay",
43
"replay/injected-scripts",
44
"website",
45
"core/injected-scripts",
46
"examples/*.js",
47
"plugins/default-browser-emulator/injected-scripts",
48
"plugins/default-browser-emulator/data"
49
]
50
}
51
52