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.
This commit is contained in:
James Brunton 2025-11-05 08:55:22 +00:00 committed by GitHub
parent 8f94c7d7b0
commit f3eed4428d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 3 deletions

View File

@ -4,8 +4,7 @@
"paths": {
"@app/*": [
"src/core/*"
],
"@core/*": ["src/core/*"]
]
}
},
"exclude": [

View File

@ -6,7 +6,6 @@
"src/proprietary/*",
"src/core/*"
],
"@proprietary/*": ["src/proprietary/*"],
"@core/*": ["src/core/*"]
}
}