scotttomaszewski_obsidian-d.../tsconfig.json
Scott Tomaszewski 46e23183bb Refactor plugin architecture and remove legacy code
- Simplify main plugin entry point by removing complex initialization logic
- Remove legacy Bible data loading and service implementations
- Delete unused models, services, and utility classes
- Streamline plugin structure to focus on core functionality
- Remove hardcoded ESV.json and chapter data files
- Update README to reflect simplified architecture
2025-03-09 22:32:41 -04:00

28 lines
519 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"inlineSourceMap": true,
"inlineSources": true,
"module": "ESNext",
"target": "ES6",
"allowJs": true,
"noImplicitAny": true,
"moduleResolution": "node",
"importHelpers": true,
"isolatedModules": true,
"strictNullChecks": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"lib": [
"DOM",
"ES5",
"ES6",
"ES7",
"ES2017"
]
},
"include": [
"**/*.ts",
"src/**/*.json"
]
}