0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-22 08:40:03 +01:00
posthog/rust/cyclotron-node/tsconfig.json
Oliver Browne 9734a40c96
feat: cyclotron (#24228)
Co-authored-by: Brett Hoerner <brett@bretthoerner.com>
Co-authored-by: Ben White <ben@posthog.com>
2024-08-21 12:24:56 -06:00

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"]
}