mirror of
https://github.com/laurent22/joplin.git
synced 2025-02-07 19:30:04 +02:00
This reverts commit f4327343388d09872fb67caed61cd55afaa8e4e0. 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/**/*",
|
|
],
|
|
} |