-
Notifications
You must be signed in to change notification settings - Fork 29
/
tsconfig.json
34 lines (34 loc) · 1.11 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
{
"compilerOptions": {
"target": "es6",
"module": "CommonJS",
"jsx": "react",
"sourceMap": true,
"strict": true,
"moduleResolution": "node",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true
},
"references": [
{ "path": "./packages/core/shell" },
{ "path": "./packages/core/logger" },
{ "path": "./packages/core/types" },
{ "path": "./packages/platforms/android" },
{ "path": "./packages/platforms/ios-instruments" },
{ "path": "./packages/platforms/ios" },
{ "path": "./packages/platforms/profiler" },
{ "path": "./packages/plugins/appium-helper" },
{ "path": "./packages/commands/test" },
{ "path": "./packages/commands/tools" },
{ "path": "./packages/core/reporter" },
{ "path": "./packages/core/web-reporter-ui" },
{ "path": "./packages/commands/report" },
{ "path": "./packages/plugins/appium-test-cases" },
{ "path": "./packages/plugins/aws-device-farm" },
{ "path": "./packages/commands/measure" },
{ "path": "./examples/cli" },
{ "path": "./examples/e2e" }
],
"files": []
}