2019-12-04 21:06:22 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
2019-12-13 01:16:34 +00:00
|
|
|
"target": "es2015",
|
2020-05-26 02:14:38 +00:00
|
|
|
"lib": ["es2020.string", "dom", "dom.iterable"],
|
2019-12-04 21:06:22 +00:00
|
|
|
"alwaysStrict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2020-03-23 00:47:25 +00:00
|
|
|
"listEmittedFiles": false,
|
2019-12-04 21:06:22 +00:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"jsx": "react",
|
2020-06-10 21:08:59 +00:00
|
|
|
"skipLibCheck": true,
|
2020-08-02 11:28:50 +00:00
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"lib/*": ["./ReactNativeClient/lib/*"],
|
|
|
|
},
|
2019-12-04 21:06:22 +00:00
|
|
|
},
|
|
|
|
"include": [
|
2019-12-14 10:55:58 +00:00
|
|
|
"ReactNativeClient/**/*",
|
|
|
|
"ElectronClient/**/*",
|
|
|
|
"CliClient/**/*",
|
2019-12-04 21:06:22 +00:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"**/node_modules",
|
2020-02-20 22:59:18 +00:00
|
|
|
"ElectronClient/dist/**/*",
|
2019-12-04 21:06:22 +00:00
|
|
|
],
|
|
|
|
}
|