mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
44e60bdda9
Revert commit dfd95f8385
Due to UX issues.
Ref https://discourse.joplinapp.org/t/25775/30
19 lines
286 B
JSON
19 lines
286 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"]
|
|
}
|
|
}
|