mirror of
https://github.com/BillyOutlast/posthog.git
synced 2026-02-04 03:01:23 +01:00
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>
31 lines
841 B
JSON
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"]
|
|
}
|
|
}
|