Skip to content

Commit

Permalink
fix the tsconfig issue with the examples
Browse files Browse the repository at this point in the history
  • Loading branch information
TarikGul committed Nov 1, 2023
1 parent 32a9649 commit 1f4a7ca
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions examples/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
"compilerOptions": {
"baseUrl": ".",
"outDir": "build",
"suppressImplicitAnyIndexErrors": true,
"resolveJsonModule": true,
"esModuleInterop": true,
},
"typeRoots": [
"../node_modules/@types"
],
"exclude": [
"node_modules"
],
"include": [
"./*",
"../src/**/*.ts",
"../src/**/*.json",
]
}

0 comments on commit 1f4a7ca

Please sign in to comment.