joplin/packages/app-mobile/tsconfig.json

20 lines
343 B
JSON

{
"extends": "../../tsconfig.json",
"include": [
"**/*.ts",
"**/*.tsx",
],
"exclude": [
//Files that don't need transpilation
"**/node_modules",
"**/*.test.ts",
"**/*.test.tsx",
"gulpfile.ts",
"tools/*.ts",
],
"compilerOptions": {
"types": ["jest", "node"],
"moduleSuffixes": [".ios", ".android", ".native", ""]
}
}