Skip to content

Commit

Permalink
Adding TypeScript Support.
Browse files Browse the repository at this point in the history
  • Loading branch information
dreadera committed Jun 4, 2021
1 parent 815ffe3 commit b12961d
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 9 deletions.
9 changes: 0 additions & 9 deletions jsconfig.json

This file was deleted.

21 changes: 21 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"compilerOptions": {
"declaration": true,
"target": "esnext",
"lib": ["esnext", "dom"],
"strict": true,
"noImplicitAny": false,
"esModuleInterop": true,
"moduleResolution": "node",
"outDir": "dist",
},

"include": ["src/**/*"],

"exclude": [
"node_modules",
"dist",
"src/**/*.stories.tsx",
"src/**/*.test.tsx"
]
}

0 comments on commit b12961d

Please sign in to comment.