Files
Stirling-PDF/frontend/tsconfig.core.json
T
James BruntonandGitHub f3eed4428d Remove path aliases for the self folder from configs (#4825)
# Description of Changes
Remove path aliases from self folder (e.g. remove `@core` from
`tsconfig.core.json`). It's not necessary and using it means that it's
impossible for the other folders to override the behaviour. The only
reason we should currently be using `@core` is in `proprietary` where we
need to explicitly import the `core` version of the thing we're
overriding so that we can re-expose or use the objects.
2025-11-05 08:55:22 +00:00

15 lines
193 B
JSON

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