forked from ulixee/hero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.dist.json
32 lines (32 loc) · 916 Bytes
/
tsconfig.dist.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./build-dist",
"sourceMap": true,
"inlineSourceMap": false
},
"references": [
{
"path": "plugins/default-browser-emulator/injected-scripts/tsconfig.dist.json"
}
],
"include": ["**/*.ts", "**/*.js", "**/*.json", ".eslintrc.js"],
"exclude": [
"**/tsconfig*.json",
"node_modules",
"**/node_modules",
"**/build",
"build",
"build-dist",
"examples/*.js",
"browser-emulator-builder/data",
"double-agent/probe-data",
"double-agent-stacks/data/local/3-assignments",
"double-agent-stacks/data/local/4-assignment-results",
"double-agent-stacks/data/external/0-foundational-profiles",
"double-agent-stacks/data/external/3-assignments",
"double-agent-stacks/data/external/4-assignment-results",
"plugins/default-browser-emulator/injected-scripts",
"docs"
]
}