youfoundjk_TeXcore/tsconfig.json
JK 31008d1443 refactor: remove legacy equation and search modules; update imports for new feature structure
- Deleted `numbering.ts`, `reading-view.ts`, and `core.ts`, removing outdated logic for equation numbering and search.
- Updated `main.ts` to use new import paths under `features/` directory.
- Removed references to deleted modules and ensured all imports reflect the reorganized feature-based structure.
- Internal refactor to modularize and modernize the codebase; no user-facing features affected.
2026-06-04 20:12:02 +02:00

30 lines
530 B
JSON

{
"compilerOptions": {
"baseUrl": "./src",
"inlineSourceMap": true,
"inlineSources": true,
"module": "ESNext",
"target": "ES2022",
"allowJs": true,
"noImplicitAny": true,
"moduleResolution": "node",
"importHelpers": true,
"isolatedModules": true,
"strictNullChecks": true,
"lib": [
"DOM",
"ES5",
"ES6",
"ES7",
"ES2021.String",
"DOM.Iterable",
"es2022"
]
},
"include": [
"**/*.ts"
],
"exclude": [
"src/legacy/*.ts",
]
}