2019-12-12 21:35:28 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
2020-04-20 18:00:54 +00:00
|
|
|
"resolveJsonModule": true,
|
2020-04-21 09:01:05 +00:00
|
|
|
"esModuleInterop": true,
|
2019-12-12 21:35:28 +00:00
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"target": "es2016",
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"sourceMap": false,
|
|
|
|
"outDir": "./lib",
|
|
|
|
"declaration": true,
|
2020-03-12 19:36:02 +00:00
|
|
|
"jsx": "react",
|
2019-12-12 21:35:28 +00:00
|
|
|
"types": [
|
2020-03-11 23:47:18 +00:00
|
|
|
"node",
|
2020-05-14 03:07:29 +00:00
|
|
|
"react",
|
2020-06-09 21:06:54 +00:00
|
|
|
"flux",
|
|
|
|
"react-transition-group"
|
2020-08-17 17:20:57 +00:00
|
|
|
],
|
|
|
|
"lib": [
|
|
|
|
"es2019",
|
|
|
|
"dom",
|
|
|
|
"dom.iterable"
|
2021-07-28 16:14:36 +00:00
|
|
|
],
|
|
|
|
"paths": {
|
|
|
|
"posthog-js": [
|
|
|
|
"./src/@types/posthog.d.ts"
|
|
|
|
]
|
|
|
|
}
|
2019-12-12 21:35:28 +00:00
|
|
|
},
|
|
|
|
"include": [
|
2020-03-12 00:17:35 +00:00
|
|
|
"./src/**/*.ts",
|
|
|
|
"./src/**/*.tsx"
|
2021-07-28 16:14:36 +00:00
|
|
|
],
|
2019-12-12 21:35:28 +00:00
|
|
|
}
|