mirror of
https://github.com/afforai/obsidian-logically-plugin.git
synced 2026-07-22 16:00:30 +00:00
- Cleaned up the UpgradeModal component for better readability - Improved the styling for various elements in the modal - Ensured consistent formatting and indentation throughout the file - Updated the authErrors and env utility files for consistency - Refactored the researchAssistantView for improved structure - Enhanced styles in styles.css for better UI consistency - Updated tsconfig.json and version-bump.mjs for consistency
25 lines
688 B
JSON
25 lines
688 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "src",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES6",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitReturns": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"isolatedModules": true,
|
|
"strictNullChecks": true,
|
|
"strictBindCallApply": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"verbatimModuleSyntax": true,
|
|
"lib": ["DOM", "ES5", "ES6", "ES7"],
|
|
"types": ["svelte", "node"]
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.svelte"]
|
|
}
|