2019-12-04 23:06:22 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
2019-12-13 03:16:34 +02:00
|
|
|
"target": "es2015",
|
2019-12-04 23:06:22 +02:00
|
|
|
"alwaysStrict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2020-03-23 02:47:25 +02:00
|
|
|
"listEmittedFiles": false,
|
2019-12-04 23:06:22 +02:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"jsx": "react",
|
2020-06-10 23:08:59 +02:00
|
|
|
"skipLibCheck": true,
|
2019-12-04 23:06:22 +02:00
|
|
|
},
|
|
|
|
"include": [
|
2019-12-14 12:55:58 +02:00
|
|
|
"ReactNativeClient/**/*",
|
|
|
|
"ElectronClient/**/*",
|
|
|
|
"CliClient/**/*",
|
2019-12-04 23:06:22 +02:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"**/node_modules",
|
2020-02-21 00:59:18 +02:00
|
|
|
"ElectronClient/dist/**/*",
|
2019-12-04 23:06:22 +02:00
|
|
|
],
|
|
|
|
}
|