Skip to content

Commit

Permalink
Add bare bones tsconfig file
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnadeluy committed Jun 6, 2024
1 parent a094479 commit 8990039
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
4 changes: 3 additions & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ export default [{
extensions: ['js', '.jsx', '.tsx', '.ts'],
}),
terser(),
typescript(),
typescript({
tsconfig: "./tsconfig.json"
}),
],
}];
8 changes: 8 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"jsx": "react",
"moduleResolution": "node",
"target": "es2020"
}
}

0 comments on commit 8990039

Please sign in to comment.