1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-24 08:12:24 +02:00
joplin/packages/pdf-viewer/tsconfig.json

17 lines
441 B
JSON
Raw Normal View History

{
"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",
],
}