Skip to content

Commit

Permalink
Merge pull request #69 from wix-incubator/fix/tsconfig
Browse files Browse the repository at this point in the history
fix: update `tsconfig` to build drivers properly.
  • Loading branch information
asafkorem authored Jan 27, 2025
2 parents 0865668 + ffeb38b commit 8ed4d6b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"rootDir": "./",
"rootDir": "./src",
"types": ["jest", "node"],
"baseUrl": "./",
"paths": {
Expand All @@ -18,11 +18,12 @@
},
"resolveJsonModule": true
},
"include": ["src/**/*", "examples/**/*"],
"include": ["src/**/*"],
"exclude": [
"node_modules",
"dist",
"./test-utils",
"**/*.test.ts.snap"
"**/*.test.ts.snap",
"examples"
]
}

0 comments on commit 8ed4d6b

Please sign in to comment.