Skip to content

Commit

Permalink
fix module resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
felipecsl committed Dec 10, 2023
1 parent 80cc0a2 commit cf56a1e
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,18 @@
"strict": true,
"allowJs": true,
"moduleResolution": "nodenext",
"module": "commonjs",
"lib": ["es2020", "dom"]
"module": "nodenext",
"lib": [
"es2020",
"dom"
]
},
"include": ["src/**/*"],
"exclude": ["./node_modules", "dist", "src/test/**/*"]
"include": [
"src/**/*"
],
"exclude": [
"./node_modules",
"dist",
"src/test/**/*"
]
}

0 comments on commit cf56a1e

Please sign in to comment.