Skip to content

Commit

Permalink
build: Use 'node' module resolution for TS compile
Browse files Browse the repository at this point in the history
Module resolution wasn't working correctly when merging the changes for the sample app. See: https://www.typescriptlang.org/docs/handbook/module-resolution.html\#module-resolution-strategies
  • Loading branch information
corycaywood committed Apr 22, 2020
1 parent cc6e3fd commit 355ed64
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"strict": false,
"target": "ES5",
"lib": ["dom"],
"esModuleInterop": true
"esModuleInterop": true,
"moduleResolution": "node"
}
}

0 comments on commit 355ed64

Please sign in to comment.