mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2026-03-28 02:31:17 +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>
27 lines
449 B
JSON
27 lines
449 B
JSON
{
|
|
"extends": "./tsconfig.proprietary.json",
|
|
"compilerOptions": {
|
|
"paths": {
|
|
"@app/*": [
|
|
"src/desktop/*",
|
|
"src/proprietary/*",
|
|
"src/core/*"
|
|
],
|
|
"@proprietary/*": [
|
|
"src/proprietary/*"
|
|
],
|
|
"@core/*": [
|
|
"src/core/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/global.d.ts",
|
|
"src/*.js",
|
|
"src/*.ts",
|
|
"src/*.tsx",
|
|
"src/core/setupTests.ts",
|
|
"src/desktop"
|
|
]
|
|
}
|