mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
34f0a2951a
* Moved button row to separate component file and started Sharing dialog * Adding Sharing dialog * Applied "npx react-codemod rename-unsafe-lifecycles" * More UI * Tools: Improved TypeScript integration * Improved share dialog * Tools Added support for translation validation in CI, and added support for plural translations * Improved UI and sharing workflow * Share workflow * Cleaned up and improved sharing config error handling * Fixed build scripts and doc for TypeScript * Run linter
29 lines
686 B
JSON
29 lines
686 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es2015",
|
|
"alwaysStrict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"listEmittedFiles": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strictBindCallApply": true,
|
|
"strictFunctionTypes": true,
|
|
"sourceMap": true,
|
|
"jsx": "react",
|
|
},
|
|
"include": [
|
|
"ReactNativeClient/**/*.ts",
|
|
"ReactNativeClient/**/*.tsx",
|
|
"ElectronClient/**/*.ts",
|
|
"ElectronClient/**/*.tsx",
|
|
"CliClient/**/*.ts",
|
|
"CliClient/**/*.tsx",
|
|
],
|
|
"exclude": [
|
|
"**/node_modules",
|
|
],
|
|
} |