mjsumpter_obsidian-tag-page/tsconfig.json
mjsumpter 5480f0d2cc feat: update tsconfig target and add generateFilename function
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.
2024-07-30 08:46:37 -06:00

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