Files
posthog/plugin-server/tsconfig.json
Marcus Hof 5511f06a11 feat(cdp): fetch segment destinations (#34404)
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
2025-07-01 12:30:47 +00:00

31 lines
841 B
JSON

{
"compilerOptions": {
"module": "CommonJS",
"target": "ESNext",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"esModuleInterop": true,
"allowJs": true,
"sourceMap": true,
"outDir": "dist/",
"types": ["node", "jest", "long"],
"resolveJsonModule": true,
"strict": true,
"noImplicitAny": true,
"useUnknownInCatchVariables": false,
"paths": {
"~/tests/*": ["./tests/*"],
"~/*": ["./src/*"]
},
"skipLibCheck": true
},
"include": ["src", "tests"],
"exclude": ["node_modules", "dist", "bin"],
"ts-node": {
"require": ["tsconfig-paths/register"]
}
}