mirror of
https://github.com/bingryan/obsidian-markdown-export-plugin.git
synced 2026-07-22 07:10:24 +00:00
* Added support for absolute attachment paths * Extended `includeFileName` to support attachment directories * Simplified attachment directory logic * Created global OUTPUT_FORMATS enum Mainly a cosmetic change; did this because "Export to markdown" was really bugging me * Cleaned up TypeScript errors
26 lines
482 B
JSON
26 lines
482 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES2018",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"strictNullChecks": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"lib": [
|
|
"DOM",
|
|
"ES5",
|
|
"ES6",
|
|
"ES7",
|
|
"ES2021.String"
|
|
]
|
|
},
|
|
"include": [
|
|
"**/*.ts"
|
|
]
|
|
}
|