Skip to content

Commit

Permalink
fix: Update tsconfig to fix dist folder generation
Browse files Browse the repository at this point in the history
  • Loading branch information
amalv committed Mar 11, 2020
1 parent c69b808 commit 81baf9c
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,16 @@
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"module": "commonjs",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react"
"jsx": "react",
"rootDirs": ["src", "stories"],
"baseUrl": "src",
"experimentalDecorators": true,
"emitDecoratorMetadata": true
},
"include": [
"src"
]
"include": ["src/**/*"],
"exclude": ["node_modules"],
}

1 comment on commit 81baf9c

@amalv
Copy link
Owner Author

@amalv amalv commented on 81baf9c Mar 11, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy preview for website ready!

Built with commit 6b53005f1ae7ccab33eb2bf37c2bd2183040766e

https://circleback-design-system-5cbkuayky.now.sh

Please sign in to comment.