superset/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/tsconfig.json

22 lines
477 B
JSON
Raw Normal View History

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"jsx": "react",
"outDir": "../../build/lib",
"rootDir": "../../",
"emitDeclarationOnly": false,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noImplicitAny": false,
"noEmit": false,
},
"exclude": ["node_modules"],
"include": [
"storybook",
"../**/src",
"../../plugins/**/src",
]
2020-04-01 21:56:57 -04:00
}