mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2026-03-19 02:22:11 +01:00
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>
26 lines
416 B
JSON
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"
|
|
]
|
|
}
|