mirror of
https://github.com/mjsumpter/obsidian-tag-page.git
synced 2026-07-22 08:30:29 +00:00
This commit updates the `tsconfig.json` target from `ES6` to `es2021`. Additionally, a new utility function `generateFilename` is added to `src/utils/pageContent.ts`. This function is responsible for generating a filename based on the cleaned tag, wild card status, and settings.
26 lines
477 B
JSON
26 lines
477 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "es2021",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"strictNullChecks": true,
|
|
"lib": [
|
|
"DOM",
|
|
"ES5",
|
|
"ES6",
|
|
"ES7",
|
|
"es2021"
|
|
],
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": [
|
|
"**/*.ts"
|
|
]
|
|
}
|