1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-27 08:21:03 +02:00
joplin/tsconfig.json
Laurent Cozic 1dc4516efc Revert "Mobile: Refactored and made dialog boxes more reliable"
This reverts commit f432734338.

This new package has its own glitches and doesn't look good
when button labels are too large. So reverting to the less
glitchy package.
2020-06-13 16:20:59 +01:00

28 lines
629 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "es2015",
"alwaysStrict": true,
"forceConsistentCasingInFileNames": true,
"listEmittedFiles": false,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"sourceMap": true,
"jsx": "react",
"skipLibCheck": true,
},
"include": [
"ReactNativeClient/**/*",
"ElectronClient/**/*",
"CliClient/**/*",
],
"exclude": [
"**/node_modules",
"ElectronClient/dist/**/*",
],
}