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
2022-08-04 10:12:22 +01:00

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