Skip to content

Commit

Permalink
chore(vscode): added jsconfig.json file for allowing click-through
Browse files Browse the repository at this point in the history
Enables click-through on all non-relative paths, may enable some auto-import behaviour as well.

See: https://code.visualstudio.com/docs/languages/jsconfig
  • Loading branch information
liamross authored Feb 25, 2020
1 parent 0e523e2 commit 15bdce6
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"src/*": ["src/*"],
"components/*": ["src/components/*"],
"constants/*": ["src/constants/*"],
"helpers/*": ["src/helpers/*"],
"hooks/*": ["src/hooks/*"],
"actions/*": ["src/redux/actions/*"],
"reducers/*": ["src/redux/reducers/*"],
"selectors/*": ["src/redux/selectors/*"],
"core/*": ["src/core/*"]
}
},
"include": ["src/**/*"]
}

0 comments on commit 15bdce6

Please sign in to comment.