1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-27 08:21:03 +02:00
joplin/tsconfig.json

28 lines
629 B
JSON
Raw Normal View History

2019-12-04 23:06:22 +02:00
{
"compilerOptions": {
"module": "commonjs",
"target": "es2015",
2019-12-04 23:06:22 +02:00
"alwaysStrict": true,
"forceConsistentCasingInFileNames": true,
"listEmittedFiles": false,
2019-12-04 23:06:22 +02:00
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"sourceMap": true,
"jsx": "react",
"skipLibCheck": true,
2019-12-04 23:06:22 +02:00
},
"include": [
2019-12-14 12:55:58 +02:00
"ReactNativeClient/**/*",
"ElectronClient/**/*",
"CliClient/**/*",
2019-12-04 23:06:22 +02:00
],
"exclude": [
"**/node_modules",
"ElectronClient/dist/**/*",
2019-12-04 23:06:22 +02:00
],
}