storybook-addon-jsx
Version:
Display the JSX of the story
24 lines (23 loc) • 636 B
JSON
{
"compilerOptions": {
"declaration": true,
"lib": ["es2017", "dom"],
"jsx": "react",
"moduleResolution": "node",
// "allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"downlevelIteration": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "dist",
"declarationDir": "lib",
"emitDeclarationOnly": true,
"preserveConstEnums": true,
"removeComments": false,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"typeRoots": ["src/types/", "node_modules/@types/"]
},
"include": ["src/**/*.ts", "src/**/*.tsx", "typings/**/*"]
}