0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 09:14:46 +01:00
posthog/rust/cyclotron-node/tsconfig.json

25 lines
668 B
JSON
Raw Normal View History

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