Skip to content

Commit

Permalink
fix: invalid path for types (#471)
Browse files Browse the repository at this point in the history
  • Loading branch information
daine committed Mar 14, 2024
1 parent 28b94a6 commit f859d43
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/react/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,20 @@
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "dist",
"outDir": "./dist",
"removeComments": false,
"skipLibCheck": true,
"jsx": "react",
"target": "es2015",
"declarationDir": "./dist/types"
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
],
"exclude": [
"**/__tests__/**"
"**/__tests__/**",
"node_modules",
],
"compileOnSave": false,
"buildOnSave": false
Expand Down

0 comments on commit f859d43

Please sign in to comment.