mirror of
https://github.com/philips/supernote-obsidian-plugin.git
synced 2026-07-22 09:50:25 +00:00
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.
29 lines
600 B
JSON
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"
|
|
]
|
|
}
|