mirror of
https://github.com/laurent22/joplin.git
synced 2025-01-17 18:44:45 +02:00
1dc4516efc
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/**/*",
|
|
],
|
|
} |