forked from ulixee/hero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
33 lines (33 loc) · 942 Bytes
/
tsconfig.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
33
{
"extends": "@ulixee/repo-tools/tsconfig.json",
"compilerOptions": {
"rootDir": ".",
"outDir": "./build",
"noImplicitOverride": true,
},
"references": [
{
"path": "plugins/default-browser-emulator/injected-scripts/tsconfig.json",
},
],
"include": ["**/*.ts", "**/*.js", "**/*.json", ".eslintrc.js"],
"exclude": [
"**/tsconfig*.json",
"node_modules",
"**/node_modules",
"**/dist",
"**/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",
],
}