1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-05 12:50:29 +02:00
joplin/tsconfig.json
2020-02-19 00:41:49 +00:00

29 lines
667 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/**/*",
"ElectronClient/**/*",
"CliClient/**/*",
],
"exclude": [
"**/node_modules",
"CliClient/build/**/*",
"ElectronClient/app/lib/**/*",
"ElectronClient/app/dist/**/*",
],
}