mirror of
https://github.com/scotttomaszewski/obsidian-disciples-journal.git
synced 2026-07-22 05:42:13 +00:00
- 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
28 lines
519 B
JSON
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"
|
|
]
|
|
}
|