Files
Stirling-PDF/frontend/tsconfig.proprietary.json
ConnorYoh ff31b2f9ca Posthog-fixes (#5901)
PostHog is now initialized with persistence: 'memory' so no cookies are
written on first load. Consent is handled in a PostHogConsentSync
component that switches to localStorage+cookie persistence only when the
user accepts, using the official @posthog/react package (cherry-picked
from 14aaf64)

---------

Co-authored-by: James Brunton <james@stirlingpdf.com>
2026-03-09 12:13:09 +00:00

26 lines
416 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"paths": {
"@app/*": [
"src/proprietary/*",
"src/core/*"
],
"@core/*": [
"src/core/*"
],
"@proprietary/*": [
"src/proprietary/*"
]
}
},
"include": [
"src/global.d.ts",
"src/*.js",
"src/*.ts",
"src/*.tsx",
"src/core/setupTests.ts",
"src/proprietary"
]
}