Skip to content

Commit b03f626

Browse files
committed
Add simple config to resolve paths with VsCode
1 parent 2e8d3c3 commit b03f626

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

jsconfig.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"compilerOptions": {
3+
"target": "ES6",
4+
"baseUrl": "./src",
5+
"paths": {
6+
"/*": ["./*"],
7+
}
8+
},
9+
"exclude": [
10+
"node_modules",
11+
"**/node_modules/*"
12+
]
13+
}

0 commit comments

Comments
 (0)