forked from ulixee/secret-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
50 lines (50 loc) · 1.15 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"compileOnSave": true,
"compilerOptions": {
"incremental": true,
"target": "ES2019",
"module": "CommonJS",
"lib": ["ES2019", "DOM", "DOM.Iterable"],
"noImplicitAny": false,
"sourceMap": true,
"esModuleInterop": false,
"declaration": true,
"moduleResolution": "node",
"skipLibCheck": true,
"resolveJsonModule": true,
"allowJs": true,
"rootDir": ".",
"baseUrl": ".",
"outDir": "./build",
"preserveSymlinks": false,
"experimentalDecorators": true
},
"references": [
{
"path": "core/injected-scripts/tsconfig.json"
},
{
"path": "replay/tsconfig.json"
},
{
"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",
"replay",
"replay/injected-scripts",
"website",
"core/injected-scripts",
"examples/*.js",
"plugins/default-browser-emulator/injected-scripts",
"plugins/default-browser-emulator/data"
]
}