mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-27 08:21:03 +02:00
1dc4516efc
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.
28 lines
629 B
JSON
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/**/*",
|
|
],
|
|
} |