mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-25 11:17:50 +01:00
21 lines
477 B
JSON
21 lines
477 B
JSON
|
{
|
||
|
"ts-node": {
|
||
|
"transpileOnly": true,
|
||
|
"transpiler": "ts-node/transpilers/swc-experimental"
|
||
|
},
|
||
|
"compilerOptions": {
|
||
|
"module": "commonjs",
|
||
|
"esModuleInterop": true,
|
||
|
"target": "es6",
|
||
|
"noImplicitAny": true,
|
||
|
"moduleResolution": "node",
|
||
|
"sourceMap": true,
|
||
|
"outDir": "dist",
|
||
|
"baseUrl": ".",
|
||
|
"paths": {
|
||
|
"*": ["node_modules/*"]
|
||
|
}
|
||
|
},
|
||
|
"include": ["src/**/*"]
|
||
|
}
|