Skip to content

Commit

Permalink
Fix tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
philipjames44 committed Apr 14, 2024
1 parent 0b46083 commit a0f5932
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,9 @@
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"noEmit": true, // keep as true if you're only using TypeScript for type-checking
"jsx": "react-jsx"
},
"include": ["src/**/*", "tests/**/*"],
"exclude": ["node_modules"],
"files": ["dist/**/*"],
"include": ["src/**/*"], // include all files in src
"exclude": ["node_modules"] // standard exclude
}

0 comments on commit a0f5932

Please sign in to comment.