Skip to content

Commit

Permalink
fix: tsconfig include/exclude
Browse files Browse the repository at this point in the history
  • Loading branch information
nlkluth committed Oct 24, 2023
1 parent 1944f20 commit 94dc242
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
11 changes: 10 additions & 1 deletion packages/ui/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,14 @@
"compilerOptions": {
"jsx": "react-jsx",
"outDir": "./dist"
}
},
"include": [
"**/*.ts",
"**/*.tsx",
],
"exclude": [
"node_modules",
"dist",
".storybook"
]
}
11 changes: 1 addition & 10 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,5 @@
"esModuleInterop": true,
"module": "CommonJS",
"moduleResolution": "node"
},
"include": [
"**/*.ts",
"**/*.tsx",
],
"exclude": [
"node_modules",
"dist",
".storybook"
]
}
}

0 comments on commit 94dc242

Please sign in to comment.