forked from microsoft/vscode-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
28 lines (28 loc) · 838 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
{
"compilerOptions": {
"module": "commonjs",
// We need to set ES6 target otherwise instantiating ChromeDebugSession
// throws "Class constructor ChromeDebugSession cannot be invoked without 'new'" at runtime
"target": "es6",
"lib": [
"es2015"
],
"outDir": "out",
"sourceMap": true,
"rootDir": "src",
"noImplicitAny": false,
"removeComments": false,
"noFallthroughCasesInSwitch": true
},
"exclude": [
".vscode-test",
"node_modules",
"SampleApplication/",
"SampleApplication/node_modules",
"SampleApplication/.vscode",
"ReactTypings",
"tools/",
"src/test/resources/sampleReactNative022Project/",
".vscode-test"
]
}