Files
Aurora.3/tgui/tsconfig.json
Batrachophreno 0d92359da7 Bun, Inferno->React migration (#22529)
Re-creation of https://github.com/Aurorastation/Aurora.3/pull/21046 to
skip merge conflict hell. Brings us modern TGUI.

**ALTERNATE TITLE: TGUI HELLSCAPE PR
ABANDON ALL HOPE YE WHO ENTER HERE**

- [x] Migrate build tools (javascript -> typescript, bun for package
management).
- [x] Upgrade all TGUI dependencies and associated root files to
TG-congruent versions (axios, babel, dompurify, eslint, highlight,
marked, prettier, sass, source-map, stacktrace-parser, typescript).
- [x] InfernoJS -> React migrations
- [x] React cleanup and polish (migrate all remaining .js files to
appropriate .ts or .tsx filetype, all remaining hooks, linting, error
corrections, etc.)
- [ ] Test all remaining TGUI interfaces
2026-06-05 15:55:22 +02:00

32 lines
892 B
JSON

{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"checkJs": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"jsx": "preserve",
"lib": ["DOM", "DOM.Iterable", "ESNext", "ScriptHost"],
"module": "ESNext",
"moduleResolution": "Bundler",
"noEmit": true,
"paths": {
"tgui": ["./packages/tgui"],
"tgui/*": ["./packages/tgui/*"],
"tgui-panel": ["./packages/tgui-panel"],
"tgui-panel/*": ["./packages/tgui-panel/*"],
"tgui-say": ["./packages/tgui-say"],
"tgui-say/*": ["./packages/tgui-say/*"],
"tgui-dev-server": ["./packages/tgui-dev-server"],
"tgui-dev-server/*": ["./packages/tgui-dev-server/*"]
},
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": false,
"strictNullChecks": true,
"target": "ESNext"
},
"include": ["./*.d.ts", "./packages"]
}