philips_supernote-obsidian-.../tsconfig.json
Brandon Philips 9f3ed397d4 main: parallelize image processing
This reduces the procsesing time of the 1to10.note from about 7 seconds
to 1.5s. It should be significant for anyone with note files with many
pages.
2025-01-10 22:59:34 -08:00

29 lines
600 B
JSON

{
"compilerOptions": {
"baseUrl": "./src/",
"paths": {
"supernote-typescript": ["../supernote-typescript/src/"]
},
"inlineSourceMap": true,
"inlineSources": true,
"module": "ESNext",
"target": "ES6",
"allowJs": true,
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"moduleResolution": "node",
"importHelpers": true,
"isolatedModules": true,
"strictNullChecks": true,
"lib": [
"DOM",
"ES5",
"ES6",
"ES7",
"DOM.Iterable"
]
},
"exclude": [
"supernote-typescript/tests/*.ts"
]
}