Files
Stirling-PDF/frontend/editor/tsconfig.core.vite.json
T
James Brunton 11ba3814e5 Restructure Portal code to be inside Editor (#6857)
# Description of Changes
We don't have any strong reasons to keep the Portal as a separate Vite
app, and it needs access to so many things from the Editor that it no
longer makes sense to keep them separate. This PR moves the Portal code
to have direct access to the Editor code and gets rid of the shared
folder.
2026-07-03 13:20:02 +00:00

10 lines
166 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"paths": {
"@app/*": ["./src/core/*"]
}
},
"exclude": ["src/proprietary", "src/desktop"]
}