mirror of
https://github.com/BillyOutlast/posthog.git
synced 2026-02-08 05:01:21 +01:00
30 lines
852 B
JSON
30 lines
852 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": {
|
|
"~/*": ["./*"],
|
|
"main/*": ["./src/main/*"],
|
|
"worker/*": ["./src/worker/*"],
|
|
"utils/*": ["./src/utils/*"]
|
|
},
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src", "tests"],
|
|
"exclude": ["node_modules", "dist", "bin"]
|
|
}
|