Skip to content

Commit

Permalink
fix: Update tsconfig compiler options
Browse files Browse the repository at this point in the history
- Exclude dist folder
- Update lib values
  • Loading branch information
amalv committed Mar 11, 2020
1 parent 5bcdbe7 commit 5f1c4b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 2 additions & 6 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@
"compilerOptions": {
"outDir": "dist",
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"lib": ["es5", "es6", "es7", "es2017", "dom"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
Expand All @@ -24,5 +20,5 @@
"emitDecoratorMetadata": true
},
"include": ["src/**/*"],
"exclude": ["node_modules"],
"exclude": ["node_modules", "dist"],
}

1 comment on commit 5f1c4b9

@amalv
Copy link
Owner Author

@amalv amalv commented on 5f1c4b9 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.