mirror of
https://github.com/arsvendg/Stirling-PDF.git
synced 2026-07-14 10:34:06 +02: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 <[email protected]>
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"
|
|
]
|
|
}
|