0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-21 13:39:22 +01:00
posthog/tsconfig.dev.json
Michael Matloka 5c783c744c
chore: Add debug info to JSX output (#12295)
* chore: Add debug info to JSX output

* Pin React to `^16.14.0` instead of `^16.13.0`

* Remove redundant `React`s

* Add `@babel/preset-react` for Storybook

* Update babel.config.js
2022-10-17 19:30:31 +02:00

9 lines
225 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"jsx": "react-jsxdev", // Support JSX in .tsx files, with debug info (e.g. file paths)
"emitDeclarationOnly": true,
"noEmit": false
}
}