Skip to content

Commit

Permalink
chore: updated target and module resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
mirek committed Jun 4, 2023
1 parent 7277748 commit 73f5f3f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export {
updateObjects,
upsertObjects,
where,
Where,
type Where,

// Aliases
identifier as id,
Expand Down
18 changes: 13 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
{
"extends": "@tsconfig/node18/tsconfig.json",
"compilerOptions": {
"target": "ES2020",
"target": "ES2022",
"lib": [
"ES2022"
],
"module": "NodeNext",
"moduleResolution": "Node",
"noImplicitAny": true,
"noImplicitReturns": true,
"moduleResolution": "nodenext",
"resolveJsonModule": true,
"verbatimModuleSyntax": true,
"strict": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true
"noUnusedParameters": true,
"noImplicitReturns": true,
"esModuleInterop": true,
"noImplicitAny": true
},
"include": [
"src"
Expand Down

0 comments on commit 73f5f3f

Please sign in to comment.