storybook/tsconfig.json
2019-12-21 11:56:41 +01:00

28 lines
587 B
JSON

{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": ".",
"incremental": false,
"noImplicitAny": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"jsx": "react",
"module": "commonjs",
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"target": "es5",
"types": ["jest"],
"lib": ["es2017", "dom"]
},
"exclude": [
"**/dist",
"node_modules",
"**/node_modules",
"**/*.spec.ts",
"**/__tests__",
"**/*.test.ts"
]
}