afforai_obsidian-logically-.../tsconfig.json
Shirayuki Nekomata 6894500c2a
Add pre commit and prettier
- 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
2026-01-09 13:37:20 +07:00

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