Skip to content

Commit

Permalink
fix: revert back to commonjs
Browse files Browse the repository at this point in the history
  • Loading branch information
Malo Guertin committed Apr 28, 2023
1 parent d0e8a8a commit 3293513
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"name": "msw-trpc",
"version": "1.3.0",
"version": "1.3.1",
"description": "Trpc API for Mock Service Worker (MSW).",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"prepublish": "npm run build",
"test": "tsc --noEmit && jest",
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"compilerOptions": {
"outDir": "dist",
"target": "es2020",
"module": "esnext",
"target": "ES2017",
"module": "commonjs",
"strict": true,
"declaration": true,
"declarationMap": true,
Expand Down

0 comments on commit 3293513

Please sign in to comment.