Add simple config to resolve paths with VsCode

This commit is contained in:
rugk 2021-11-29 21:20:31 +01:00
parent 2b9f8b342b
commit 395be51826
No known key found for this signature in database
GPG key ID: 05D40A636AFAB34D

13
jsconfig.json Normal file
View file

@ -0,0 +1,13 @@
{
"compilerOptions": {
"target": "ES6",
"baseUrl": "./src",
"paths": {
"/*": ["./*"],
}
},
"exclude": [
"node_modules",
"**/node_modules/*"
]
}