Skip to content

Commit

Permalink
update tsconfig to fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasrice committed Apr 20, 2024
1 parent daeb785 commit 691e364
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"compilerOptions": {
"target": "es2022",
"module": "ES6",
"module": "Node16",
"strict": true,
"esModuleInterop": true,
"moduleResolution": "NodeNext",
"moduleResolution": "Node16",
"experimentalDecorators": true,
"rootDir": "./src"
},
"references": [{ "path": "./src/lib" }, { "path": "./src/test" }],
"references": [{ "path": "./src/lib" }, { "path": "./src/test", }],
"files": []
}

0 comments on commit 691e364

Please sign in to comment.