Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/tsconfig.dist.json
1028 views
1
{
2
"extends": "./tsconfig.json",
3
"compilerOptions": {
4
"outDir": "./build-dist",
5
"sourceMap": true,
6
"inlineSourceMap": false
7
},
8
"references": [
9
{
10
"path": "core/injected-scripts/tsconfig.dist.json"
11
},
12
{
13
"path": "replay/tsconfig.dist.json"
14
},
15
{
16
"path": "plugins/default-browser-emulator/injected-scripts/tsconfig.dist.json"
17
}
18
],
19
"include": ["**/*.ts", "**/*.js", "**/*.json"],
20
"exclude": [
21
"*jest*",
22
"**/tsconfig*.json",
23
"**/test",
24
"node_modules",
25
"**/node_modules",
26
"**/dist",
27
"**/build",
28
"build",
29
"build-dist",
30
"replay",
31
"examples",
32
"website",
33
"core/injected-scripts",
34
"plugins/default-browser-emulator/injected-scripts",
35
"plugins/default-browser-emulator/data"
36
]
37
}
38
39