1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00
joplin/tsconfig.json

30 lines
751 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",
// This is needed because otherwise we get errors in node_modules for React
// but ideally it should be made to work.
"skipLibCheck": true,
},
"include": [
"ReactNativeClient/**/*",
"ElectronClient/**/*",
"CliClient/**/*",
],
"exclude": [
"**/node_modules",
"ElectronClient/dist/**/*",
],
}