mirror of
https://github.com/youfoundjk/TeXcore.git
synced 2026-07-22 07:33:31 +00:00
- 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.
30 lines
530 B
JSON
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",
|
|
]
|
|
}
|