mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
36 lines
865 B
JSON
36 lines
865 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es2015",
|
|
"lib": ["es2020.string", "dom", "dom.iterable"],
|
|
"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,
|
|
"allowUmdGlobalAccess": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"lib/*": ["./ReactNativeClient/lib/*"],
|
|
},
|
|
},
|
|
"include": [
|
|
"ReactNativeClient/**/*",
|
|
"ElectronClient/**/*",
|
|
"CliClient/**/*",
|
|
],
|
|
"exclude": [
|
|
"**/node_modules",
|
|
"ElectronClient/dist/**/*",
|
|
"CliClient/tests/support/**/*",
|
|
"CliClient/tests-build/support/**/*",
|
|
],
|
|
} |