mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
17 lines
441 B
JSON
17 lines
441 B
JSON
|
{
|
||
|
"extends": "../../tsconfig.json",
|
||
|
"compilerOptions": {
|
||
|
/* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
|
||
|
"esModuleInterop": true,
|
||
|
/* Required since pdf.js does not have a ts binding.*/
|
||
|
"allowJs": true,
|
||
|
},
|
||
|
"rootDir": ".",
|
||
|
"include": [
|
||
|
"**/*.ts",
|
||
|
"**/*.tsx",
|
||
|
],
|
||
|
"exclude": [
|
||
|
"**/node_modules",
|
||
|
],
|
||
|
}
|