Skip to content

Commit

Permalink
chore: fix tsconfig to support webpack alias (#175)
Browse files Browse the repository at this point in the history
  • Loading branch information
jyash97 committed Jun 25, 2021
1 parent 77abb47 commit bf0c1a3
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions frontend/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true
},
"include": ["src"]
"noEmit": true,
"baseUrl": ".",
"paths": {
"Src/*": ["./src/*"]
}
}
}

0 comments on commit bf0c1a3

Please sign in to comment.