Skip to content

Commit

Permalink
+"moduleResolution": "node"
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Kryukov committed Dec 3, 2023
1 parent cfcd4ca commit fb942a4
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions javascript/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"compilerOptions": {
"noImplicitAny": false,
"declaration": true,
"moduleResolution": "Node",
"noEmitOnError": true,
"noImplicitAny": false,
"outDir": "dist",
"removeComments": false,
"sourceMap": true,
"target": "es2015",
"outDir": "dist",
"declaration": true,
"strictNullChecks": true
"strictNullChecks": true,
"target": "es2015"
},
"include": ["*.ts", "tests"],
"exclude": ["node_modules", "dist"]
Expand Down

0 comments on commit fb942a4

Please sign in to comment.