mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
9734a40c96
Co-authored-by: Brett Hoerner <brett@bretthoerner.com> Co-authored-by: Ben White <ben@posthog.com>
25 lines
668 B
JSON
25 lines
668 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "CommonJS",
|
|
"target": "ESNext",
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"baseUrl": "src/",
|
|
"rootDir": "src/",
|
|
"outDir": "dist/",
|
|
"types": ["node"],
|
|
"resolveJsonModule": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"useUnknownInCatchVariables": false
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "dist", "bin"]
|
|
}
|